DEV Community

hub
hub

Posted on

methods: Is it possible to connect vscode (on a local machine) with Google Colab (the free service) runtime?

Yes, it is very possible. Just managed it today.

What you need to do is create an ssh connection with the google collab Write this on a google collab jupyter Notebook:

import random, string
password = ''.join(random.choice(string.ascii_letters + string.digits) for i in range(20))

#Download ngrok
! wget -q -c -nc

Top comments (0)