Tweepy不会安装在python 3.7上;显示“语法错误”
作者:互联网
在开始之前,我想作为序言,我对python相对较新,并且在我的这个小项目之前不必使用它.我正在尝试将twitter机器人作为艺术项目的一部分,我似乎无法通过导入来获取.我正在使用macOS High Sierra和Python 3.7.我首先使用安装了tweepy
pip3 install tweepy
这似乎工作,因为我能够在finder中找到tweepy文件.但是,当我输入时
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模块”,所以我不知道如何处理我的错误.谢谢!
解决方法:
使用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 are supported.
目前,您可以安装开发版本:
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可能无法完全理解您安装的内容.
标签:python,twitter,tweepy,python-3-7 来源: https://codeday.me/bug/20190929/1832703.html