Tweepy不会在python 3.7上安装;显示“语法错误”

时间:2018-07-19 03:16:54

标签: python twitter tweepy python-3.7

在开始之前,我想给自己起个头:我对python还是比较陌生的,在我的这个小项目之前,不必使用太多。我正在尝试将Twitter机器人作为艺术项目的一部分,但似乎无法导入。我正在使用macOS High Sierra和Python 3.7。我首先使用

安装了tweepy
pip3 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模块”类似,所以我不知道如何处理我的错误。谢谢!

2 个答案:

答案 0 :(得分:4)

使用async作为标识符has been deprecated since Python 3.5, and became an error in Python 3.7,因为它是关键字。

此Tweepy错误为reported on 16 Marfixed 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)

在Python3.7中,async成为保留字(如部分here所示),因此不能用作参数。这就是为什么引发此Syntax Error的原因。

也就是说,仅遵循tweetpy的官方GitHub(here

  

支持Python 2.7、3.4、3.5和3.6。


但是,如果您确实必须使用Python3.7,则有一种解决方法。遵循this的建议,您可以

  

打开streaming.py,并将async替换为async_

它应该可以工作