我需要一些帮助来源安装pandas。我从源代码编译,因为我正在使用hpc集群,我没有管理权限,我安装在我的本地文件夹中。
我已经从源代码中查找了安装的官方文档,但我认为它已丢失。
我做
python setup.py install --prefix=/my/local/folder build_ext --inplace --force
但是当我从python 3.3导入它时。它说:
ImportError: C extension: hashtable not built. If you want to import pandas from the source directory, you may need to run 'python setup.py uild_ext --inplace' to build the C extensions first.
可能是因为Cython
我做错了吗? /建议的想法?