我正在尝试使用 Google Cloud Platform 并通过脚本安装环境。我做了以下事情:
wget http://cs231n.github.io/assignments/2018/spring1718_assignment1.zip
unzip spring1718_assignment1.zip
cd assignment1
./setup_googlecloud.sh
不幸的是,它以错误结束:
ERROR: Package 'aiocoap' requires a different Python: 2.7.17 not in '>=3.3'
我尝试了更新替代方案的提议更改Ubuntu中的Python3默认版本:该命令python --version
现在成功显示“Python 3.7.5”,但执行脚本时仍然出现错误。创建别名也不起作用,重新登录到控制台也没有帮助。
除了错误之外,我还收到一条警告,显然是由以下 Python 源代码显示的(谢谢grep
):
if platform.python_implementation() == "CPython":
message = (
"Python 2.7 reached the end of its life on January "
"1st, 2020. Please upgrade your Python as Python 2.7 "
"is no longer maintained. "
) + message
deprecated(message, replacement=None, gone_in=None)
为什么更新替代方案对我不起作用?如何使脚本和“aiocoap”安装工作?