2017-08-09 182 views

回答

8

您可以嘗試安裝特定的NumPy版本ñ。在你的情況下,你可以使用:

$ conda install numpy=1.13 

如果發生衝突,它將顯示衝突的軟件包。

例如:

$ conda install numpy=1.14 

Solving environment: failed 

UnsatisfiableError: The following specifications were found to be in conflict: 
    - blaze -> numba -> numpy[version='>=1.13,<1.14.0a0'] 
    - numpy=1.14 
Use "conda info <package>" to see the dependencies for each package. 

在這種情況下blazenumba防止NumPy的從升級。

+1

是的,''底圖'是問題,刪除它和numpy 1.13.1安裝好 – f5r5e5d

1

我有同樣的問題,他們都沒有工作!

所以我解決它使用命令:

pip install --upgrade numpy 

然後,當我ls到我的站點包目錄,我看到它的更新到1.14.0。