运行:
当我执行以下内容时:
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
答案 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工作。感谢。