2016-11-16 117 views
1

我的Python版本名爲numpy的:導入錯誤:沒有模塊OSX10.12.1

>which python 
/usr/local/bin/python 

已驗證numpy安裝:

>pip install numpy 
Requirement already satisfied: numpy in /usr/local/lib/python2.7/site-packages 

PYTHONPATH導出:

echo $PYTHONPATH 
/usr/local/lib/python2.7/site-packages 

但是,當我使用Python和import numpy它顯示錯誤:

Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
ImportError: No module named numpy 

回答

0

您是否安裝了多個Python?我認爲,在命令行安裝到錯誤的位置,可能是由於與非系統預裝的Python(例如自制或macport),以VIRTUALENV ..

或者

嘗試卸載numpy的和重新安裝。

Look at the problem

相關問題