私はpip -install --upgrade pandas
をした20.2
ピップインストールnumpyのエラー
に19.2
からパンダをアップグレードしようとしましたが、それが正常に実行されました。私はimport pandas
しようとすると、しかし、今私が取得:
"Missing required dependencies {0}".format(missing_dependencies))
ImportError: Missing required dependencies ['numpy']
私はアンインストールしてpip uninstall numpy
とpip install 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
の「正常な」バージョンをインストールするにはどうすればよいですか?それがダウンロードされたディレクトリに移動し、実行し
http://www.lfd.uci.edu/~gohlke/pythonlibs/
:私は、このキャッシュされたバージョンは、このリンクに問題
アップグレードしようとすると** pip install --upgrade numpy ** – Stack