I've been working with my software engineer for a week to diagnose the SSH issues when trying to use gcloud compute commands with our new Google Cloud Deep Learning VM image. Since we can't find any support through Google documentation, Slack, Stack Overflow, etc I'm meeting with our CTO tomorrow to suggest that we should consider another solution to Google Cloud since there is no support available.
--
You received this message because you are subscribed to the Google Groups "google-dl-platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-dl-platf...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-dl-platform/c0c59327-e1ee-4c2e-82b6-036e2795b8ae%40googlegroups.com.
A Jupyter Lab session is started when your Deep Learning VM instance is initialized. To access it, set up port forwarding on your instance:
export INSTANCE_NAME="my-instance"
gcloud compute ssh $INSTANCE_NAME -- -L 8080:localhost:8080
I spent about 6 hours to finally get Google Colab/Jupyter notebook to work with our Deep Learning VM. There are at least two sets of instructions and neither had the right instructions for me. Here are the steps I used to finally get it to work:1. From the terminal on my Mac:jupyter notebook \--NotebookApp.allow_origin='https://colab.research.google.com' \--port=8888 \--NotebookApp.port_retries=02. From the terminal on my Mac (this doesn't work if you click the SSH button in the Google Console SSH :gcloud compute ssh "instance name" --zone "zone" -- -L 8888:localhost:88883. Start Colab and connect to local port 8888Very, very frustrated with how hard everything is with Google Cloud DL image.
--
You received this message because you are subscribed to the Google Groups "google-dl-platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-dl-platf...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-dl-platform/bf5c48e3-7a0f-4f1d-83ea-2e8fa9668c7d%40googlegroups.com.