在GCE VM上运行的RHEL 7与在您自己的物理服务器上运行的RHEL 7大致相同。
要注意的一件事是,默认情况下,在GCE Vms上,使用您ssh进入VM的默认帐户启用了无密码sudo。
SSH(通过浏览器或使用
gcloud compute ssh)进入虚拟机后,您可以按照以下步骤操作:
# Install Python 3.4sudo yum -y install python34# Install python-setuptools which will bring in easy_installsudo yum -y install python34-setuptools# Install pip using easy_installsudo easy_install-3.4 pip



