我正在尝试为使用 Cloud ML 的谷歌云项目设置谷歌云 shell 环境。
我正在按照他们的设置页面本身的说明进行操作:
我在我的cloud shell
:
输出跟踪的最后一部分是:
- 回声'成功!您的环境具有所需的工具和依赖项。成功!您的环境具有所需的工具和依赖项。
这个命令:
导出 PATH=${HOME}/.local/bin:${PATH}
不产生任何输出。
最后是检查环境的命令:
卷曲 https://raw.githubusercontent.com/GoogleCloudPlatform/cloudml-samples/master/tools/check_environment.py | Python
产生这个输出:
vineetkaushik053@cloudshell:~$ curl https://raw.githubusercontent.com/GoogleCloudPlatform/cloudml-samples/master/tools/check_environment.py | python
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 3814 100 3814 0 0 17274 0 --:--:-- --:--:-- --:--:-- 17257
You are using pip version 8.1.1, however version 9.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
You are using pip version 8.1.1, however version 9.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
Your active configuration is: [cloudshell-11180]
ERROR: Unable to list Cloud ML models: {
"error": {
"code": 400,
"message": "Field: parent Error: Name should be in the form of 'projects/your-project-id'",
"status": "INVALID_ARGUMENT",
"details": [
{
"@type": "type.googleapis.com/google.rpc.BadRequest",
"fieldViolations": [
{
"field": "parent",
"description": "Name should be in the form of 'projects/your-project-id'"
}
]
}
]
}
}
什么时候应该生产:
“成功!你的环境配置正确。” 当脚本成功完成时。
请告诉我如何解决这个问题,以便我可以进入设置的下一部分。