Python setup.py egg_info失败wsgiref

时间:2018-11-28 19:27:07

标签: python

我有一个twitch机器人的代码,该代码可以连接到数据库并收集数据。我遵循了有关如何设置该机器人的教程,并做了所有说明。最后一个步骤是运行命令:pip install -r requirements.txt。我是正确的文件夹,当我运行该文件夹时,出现错误SyntaxError: missing parentheses in call to 'print',不知道如何解决。 Output

1 个答案:

答案 0 :(得分:2)

错误显示SyntaxError: missing parentheses in call to 'print'

Python2.7 不对print语句使用括号,而 Python3 则使用括号。尝试使用 Python2.7 而不是 Python3 运行程序。