0

在 Windows 中使用命令提示符安装python-amazon-product-api时出现错误:

File "setup.py", Line 60
     print 'ERROR: Version %r has not been adjusted yet!' % version_

SyntaxError: invalid syntex
4

2 回答 2

2

您偶然发现的是我防止将错误的版本号上传到 PyPI 的安全措施之一。但是,如果您使用python setup.py install.

至于对 Python 3 的支持:即将推出。我只需要找时间去做;)

于 2013-11-03T18:26:11.943 回答
0

python3中没有格式化符号'%'。将其更改为:

print 'ERROR: Version {0} has not been adjusted yet!'.format(version_)
于 2013-10-30T12:55:01.487 回答