运行google_sql我得到无效的语法错误

时间:2013-10-13 20:17:52

标签: python google-app-engine python-3.x

运行:

  • Google Cloud SDK 0.9.9
  • Python 3.3

当我执行以下内容时:

c:\google-cloud-sdk-0.9.9\bin>google_sql reaperfire-cloud-sql

我收到以下错误:

Traceback (most recent call last):
  File "c:\google-cloud-sdk-0.9.9\bin\gauth", line 10, in <module>
    import bootstrapping.bootstrapping as bootstrapping
  File "c:\google-cloud-sdk-0.9.9\bin\bootstrapping\bootstrapping.py", line 251
    print 'There are currently no authorized credentials.',
                                                         ^
SyntaxError: invalid syntax

2 个答案:

答案 0 :(得分:3)

在python 3中print是一个函数,所以你必须这样写:

print("Hello, World!")

in 2就像这样:

print 'Hello, World!'

点击此处查看有关Printing in Python 3

的更多信息

答案 1 :(得分:0)

google_sql需要Python 2,而不是3 ...下载python 2.x工作。感谢。