自学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,导致依赖关系出错
2021年11月补充:还有种可能,在公共平台的服务器,个人账户调用的公共软件,没有包安装的权限