Python 3.5 Jupyter 환경에서 다음을 실행할 때 아래 오류가 발생합니다. 무슨 일이 일어나고 있는지에 대한 아이디어가 있습니까?findspark.init() IndexError : 목록 색인 범위 외 오류
import findspark
findspark.init()
오류 :이 때문에 SPARK_HOME
환경 변수에 가능성이 높습니다
IndexError Traceback (most recent call
last) <ipython-input-20-2ad2c7679ebc> in <module>()
1 import findspark
----> 2 findspark.init()
3
4 import pyspark
/.../anaconda/envs/pyspark/lib/python3.5/site-packages/findspark.py in init(spark_home, python_path, edit_rc, edit_profile)
132 # add pyspark to sys.path
133 spark_python = os.path.join(spark_home, 'python')
--> 134 py4j = glob(os.path.join(spark_python, 'lib', 'py4j-*.zip'))[0]
135 sys.path[:0] = [spark_python, py4j]
136
IndexError: list index out of range