如何在Google Cloud计算引擎中升级到Python3.6深度学习VM映像?

时间:2019-03-28 01:12:58

标签: google-cloud-platform deep-learning google-compute-engine python-3.6

我正在使用我的工作站进行深度学习,并计划转移到GCP计算引擎工作站。我已经通过简单的jupyterlab集成在其市场上深度学习了自定义图像,但是这些图像是基于python3.5的,而我的代码是基于python3.6的,因此,遇到了一些运行时错误。我尝试在pytorch deeplearning vm image中升级到python3.6,但未成功。有人可以指导我在gcp深度学习映像中安装/升级到python3.6吗?

1 个答案:

答案 0 :(得分:1)

根据文档Deep Learning VM images,它使用Debian 9“ Stretch”

因此您所要做的就是遵循本文档How to Install Python 3.6.4 on Debian 9

通过使用测试包,首先使用您最喜欢的编辑器(我们将使用nano)编辑“ /etc/apt/sources.list”文件,然后在文件底部添加以下行:

# sudo nano /etc/apt/sources.list

deb http://ftp.de.debian.org/debian testing main

然后执行以下命令,以使服务器上的“稳定”存储库成为默认设置:

# echo 'APT::Default-Release "stable";' | sudo tee -a /etc/apt/apt.conf.d/00local

现在更新软件包列表:

# sudo apt-get update

并使用以下命令从Debian“测试”存储库安装Python 3.6.4:

# sudo apt-get -t testing install python3.6

如果一切顺利,请运行以下命令以打开Python 3.6.4解释器:

# python3.6