python无法导入tweepy库

时间:2015-11-10 12:12:41

标签: python tweepy

我尝试导入tweepy库,但是收到此错误消息:

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

以上我收到此消息,我不知道这两条消息是否相关

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.

2 个答案:

答案 0 :(得分:1)

你可能没有在正确的位置安装tweepy。试试

pip3 install tweepy

我遇到了同样的问题,这为我保存了它。

答案 1 :(得分:1)

尝试

python -m pip install tweepy