【发布时间】:2017-06-15 13:59:31
【问题描述】:
我尝试将 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 的“普通”版本?我相信这个缓存版本会导致问题
【问题讨论】:
-
尝试升级,pip install --upgrade numpy