import pandas as pandas
import Quandl as Quandl
df = Quandl.get('WIKI/GOOGL')
print (df.head)
このプログラムを実行しようとすると、異常なエラーが発生します
Traceback (most recent call last):
File "/home/machine/.local/lib/python3.5/site-packages/pandas/__init__.py", line 25, in <module>
from pandas import hashtable, tslib, lib
ImportError: /home/machine/.local/lib/python3.5/site-packages/pandas/hashtable.cpython-35m-x86_64-linux-gnu.so: undefined symbol: PyFPE_jbuf
上記の例外の処理中に、別の例外が発生しました:
Traceback (most recent call last):
File "ML_prac.py", line 1, in <module>
import pandas as pandas
File "/home/machine/.local/lib/python3.5/site-packages/pandas/__init__.py", line 31, in <module>
"extensions first.".format(module))
ImportError: C extension: /home/machine/.local/lib/python3.5/site-packages/pandas/hashtable.cpython-35m-x86_64-linux-gnu.so: undefined symbol: PyFPE_jbuf not built. If you want to import pandas from the source directory, you may need to run 'python setup.py build_ext --inplace' to build the C extensions first.
この問題を解決するにはどうすればよいですか??? 助言がありますか