当我要在 GCP 中部署 app.yaml 时,突然出现错误,即“错误:gcloud 崩溃(ModuleNotFoundError):没有名为‘distutils.spawn’的模块”。请给我建议解决方案。我正在使用带有 PHP App Engine 的 Ubuntu 18.04.5。
答案1
尝试安装它然后部署:
sudo apt install python3-distutils -y 或 python3 -m pip install setuptools
当我要在 GCP 中部署 app.yaml 时,突然出现错误,即“错误:gcloud 崩溃(ModuleNotFoundError):没有名为‘distutils.spawn’的模块”。请给我建议解决方案。我正在使用带有 PHP App Engine 的 Ubuntu 18.04.5。
尝试安装它然后部署:
sudo apt install python3-distutils -y 或 python3 -m pip install setuptools