作者:外星人不吃饭
链接:https://www.jianshu.com/p/80be6c9154ff
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
自学pandas数据分析时,被安利annaconda ,因为它可以解决一些依赖关系,会省去不少的麻烦,但是安装之后,发现导包一直不成功。理论上pandas是annaconda自带的模块,无需安装,可以直接导入使用。实际使用时遇到以下问题:
ImportError: C extension: No module named 'pandas._libs.tslib' not built. If you want to import pandas from the source directory, you may need to run 'python setup.py build_ext --inplace --force' to build the C extensions first.
1.尝试使用conda list 发现模块存在,Python交互环境中导包报错
2.尝试conda uninstall pandas +conda install pandas 依旧存在
3. 尝试pip uninstall pandas + pip install pandas ,
then everything will be OK。
python交互环境下导包成功。困扰一整天。。
推测可能是因为安装annaconda之前本地已经安装过Python,导致依赖关系出错、