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