2015-11-10 97 views
0

我試圖導入tweepy庫,但我得到這個錯誤信息:蟒蛇不能導入tweepy庫

Traceback (most recent call last): 
    File "<pyshell#4>", line 1, in <module> 
    import tweepy 
ImportError: No module named 'tweepy' 

及以上的Python文件我得到這個消息,我不知道如果這兩個消息related

Python 3.5.0 (v3.5.0:374f501f4567, Sep 12 2015, 11:00:19) 
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin 
Type "copyright", "credits" or "license()" for more information. 
>>> WARNING: The version of Tcl/Tk (8.5.9) in use may be unstable. 
Visit http://www.python.org/download/mac/tcltk/ for current information. 
+3

錯誤說你要導入特威迪,不tweepy ... – miles82

+0

實際上SAFARI正確它是 '特威迪'。但我導入tweepy – sara

+0

你安裝了tweepy嗎?試試'pip install tweepy' – miles82

回答

1

您可能沒有在正確的地方安裝tweepy。嘗試

pip3 install tweepy 

我有同樣的問題,併爲我保存它。

+0

我希望我能給你兩個upvotes這個。我瘋了,直到我看到這個。然後,我意識到我的Spyder運行的是Python 3.4而不是3.5,就像我以爲的那樣。我把所有東西都移到python 3.4文件夾中,一切都落到了地方。很好的答案。 – DataGirl

1

嘗試

python -m pip install tweepy