Cocos2d和Pyglet安装无功能

时间:2014-12-25 01:06:08

标签: python pyglet cocos2d-python

通过将它们移动到我的python安装的Lib文件夹中来安装后,我在尝试导入cocos时出现此错误。

Traceback (most recent call last):
  File "C:/Users/test/PycharmProjects/Testing/main.py", line 1, in <module>
    import cocos
  File "C:\Python34\lib\cocos\__init__.py", line 69, in <module>
    import os, pyglet
  File "C:\Python34\lib\pyglet\__init__.py", line 276
    print '[%d] %s%s %s' % (thread, indent, name, location)
                   ^
SyntaxError: invalid syntax

1 个答案:

答案 0 :(得分:1)

您正在使用Python 3,但尝试使用Python 2的print语句。在Python 3中,print语句已更改为print函数。尝试:

print('[%d] %s%s %s' % (thread, indent, name, location))

您还可以使用更新的方法在Python 3中格式化字符串:

print('{:0d} {}{} {}'.format(thread, indent, name, location))