Skip to content

Instantly share code, notes, and snippets.

@dyllanwli
Created November 30, 2020 22:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dyllanwli/d9e346aad041237e8de5c5bfdd4ade29 to your computer and use it in GitHub Desktop.
Save dyllanwli/d9e346aad041237e8de5c5bfdd4ade29 to your computer and use it in GitHub Desktop.
Run VScode on colab
!curl -fsSL https://code-server.dev/install.sh | sh
!pip install -qqq pyngrok
from pyngrok import ngrok
url = ngrok.connect(port=9000)
print(url)
!nohup code-server --port 9000 --auth none &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment