ImportError: C extension: No module named ‘pandas._libs.tslib‘ not built.错误信息的解决方法

最近在使用pandas时,在import  pandas模块时,出现了以下的错误信息 :

ModuleNotFoundError: No module named 'pandas._libs.tslib'

During handling of the above exception, another exception occurred:

ImportError                               Traceback (most recent call last)
 in 
----> 1 import pandas

E:\soft\Anaconda\lib\site-packages\pandas\__init__.py in 
     33                       "pandas from the source directory, you may need to run "
     34                       "'python setup.py build_ext --inplace --force' to build "
---> 35                       "the C extensions first.".format(module))
     36 
     37 from datetime import datetime

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.

        后面,我在相应路径下,发现确实没有找到pandas._libs.tslib模块。后面在网上寻找方法时,发现问题更多的是用pyinstaller打包pandas时出现问题的解决办法。如果你没有使用pyinstaller打包的话,可以考虑使用我的解决方法,分享如下:

conda uninstall pandas
conda install pandas

      笔者在这里是使用conda直接进行移除的,没有安装anaconda的,可以使用pip uninstall pandas ,easy_install -m pandas等方法来进行移除,在这里就不详细介绍了。在卸载时候发现pandas的版本与python的版本不太一致,原因可能是不小心升级了python版本所导致的。

    原因待补充,欢迎各位朋友对于文章的不足之处进行指正~

你可能感兴趣的:(python学习之旅,错误,python,pandas)