我尝试将pandas从19.2
升级为20.2
我做了pip -install --upgrade pandas
它运行成功。但是,现在当我尝试import pandas
时,我得到了:
"Missing required dependencies {0}".format(missing_dependencies))
ImportError: Missing required dependencies ['numpy']
我使用pip uninstall numpy
和pip install numpy
卸载并重新安装numpy。但似乎numpy正在使用兑现版本。我确实安装了numpy MKL a while back....:
C:\Windows\System32>pip install numpy
Collecting numpy
Using cached numpy-1.13.0-cp36-none-win32.whl
Installing collected packages: numpy
Successfully installed numpy-1.13.0
如何安装"普通"版本numpy
?我相信这个缓存版本会导致问题
答案 0 :(得分:2)
转到此链接并下载相关的numpy .whl文件:
http://www.lfd.uci.edu/~gohlke/pythonlibs/
然后导航到下载它的目录并运行该文件的pip install命令。
希望这有帮助!
答案 1 :(得分:1)
你使用anaconda吗?尝试在cmd中运行此脚本:
"conda install numpy"
另一个解决方案可能是删除你创建的python项目的.pyc文件。 Python解释器将源代码编译为字节代码,该代码存储在.pyc中,字节代码由Pythons虚拟机执行后续代码。