在开始之前,我想给自己起个头:我对python还是比较陌生的,在我的这个小项目之前,不必使用太多。我正在尝试将Twitter机器人作为艺术项目的一部分,但似乎无法导入。我正在使用macOS High Sierra和Python 3.7。我首先使用
安装了tweepypip3 install tweepy
这似乎可行,因为我能够在finder中找到扭曲的文件。但是,当我只输入
import tweepy
进入IDLE,出现此错误:
Traceback (most recent call last):
File "/Users/jacobhill/Documents/CicadaCacophony.py", line 1, in <module>
import tweepy
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/tweepy/__init__.py", line 17, in <module>
from tweepy.streaming import Stream, StreamListener
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/tweepy/streaming.py", line 358
def _start(self, async):
^
SyntaxError: invalid syntax
关于如何解决此问题的任何想法?我看过这里的其他帖子,其他错误似乎与“找不到tweepy模块”类似,所以我不知道如何处理我的错误。谢谢!
答案 0 :(得分:4)
使用async
作为标识符has been deprecated since Python 3.5, and became an error in Python 3.7,因为它是关键字。
此Tweepy错误为reported on 16 Mar和fixed on 12 May,但为there hasn't been a new release yet。这就是为什么,例如the repo's main page says:
支持Python 2.7、3.4、3.5和3.6。
目前,您可以安装开发版本:
pip3 install git+https://github.com/tweepy/tweepy.git
或者,因为您已经安装了早期版本:
pip3 install --upgrade git+https://github.com/tweepy/tweepy.git
您还可以按照仓库中的说明进行操作:
git clone https://github.com/tweepy/tweepy.git
cd tweepy
python3 setup.py install
但是,这意味着pip
可能不完全了解您所安装的内容。
答案 1 :(得分:3)