如何在 dl VM 上启动和停止 jupyter notebook
How to start and stop jupyter notebook on dl VMs
我想更改 VM 环境(例如安装新的 conda 包,或激活新的 conda env)然后重新启动 jupyter notebook - 但我不知道如何在 jupyter 用户中执行此操作Google 云 DL 图像。可能吗?
如果您想 运行 在 运行ning DLVM 上编写一些代码并重新启动 Jupyter,请从 gcp web 控制台的计算部分通过 ssh 连接到机器。那么:
sudo service jupyter restart
如果您想在创建 VM 时在启动 Jupyter 之前自动执行一些步骤,请使用 gcloud 创建 DLVM 并指定启动脚本,如下所示:
STARTUP_SCRIPT="conda install something"
gcloud compute instances create ${INSTANCE_NAME} \
--machine-type=n1-standard-8 \
--scopes=https://www.googleapis.com/auth/cloud-platform \
--min-cpu-platform="Intel Skylake" \
${IMAGE} \
--image-project=deeplearning-platform-release \
--boot-disk-size=100GB \
--boot-disk-type=pd-ssd \
--accelerator=type=nvidia-tesla-p100,count=1 \
--boot-disk-device-name=${INSTANCE_NAME} \
--maintenance-policy=TERMINATE --restart-on-failure \
--metadata="install-nvidia-driver=True,startup-script=${STARTUP_SCRIPT}"
我想更改 VM 环境(例如安装新的 conda 包,或激活新的 conda env)然后重新启动 jupyter notebook - 但我不知道如何在 jupyter 用户中执行此操作Google 云 DL 图像。可能吗?
如果您想 运行 在 运行ning DLVM 上编写一些代码并重新启动 Jupyter,请从 gcp web 控制台的计算部分通过 ssh 连接到机器。那么:
sudo service jupyter restart
如果您想在创建 VM 时在启动 Jupyter 之前自动执行一些步骤,请使用 gcloud 创建 DLVM 并指定启动脚本,如下所示:
STARTUP_SCRIPT="conda install something"
gcloud compute instances create ${INSTANCE_NAME} \
--machine-type=n1-standard-8 \
--scopes=https://www.googleapis.com/auth/cloud-platform \
--min-cpu-platform="Intel Skylake" \
${IMAGE} \
--image-project=deeplearning-platform-release \
--boot-disk-size=100GB \
--boot-disk-type=pd-ssd \
--accelerator=type=nvidia-tesla-p100,count=1 \
--boot-disk-device-name=${INSTANCE_NAME} \
--maintenance-policy=TERMINATE --restart-on-failure \
--metadata="install-nvidia-driver=True,startup-script=${STARTUP_SCRIPT}"