SSH connection to Google Colaboratory and Transfering files from Google Drive
Do like to access the Google Colaboratory directly from your machine? Running your script via terminal and having shell access? Then there is a good news, just do the followings: SSH to Google Colaboratory 1. Install colab_ssh on Google Colaboratory
1 |
!pip install colab_ssh --upgrade |
Add cloudflared and password for root user:
1 2 |
from colab_ssh import launch_ssh_cloudflared, init_git_cloudflared launch_ssh_cloudflared(password="<PUT_YOUR_PASSWORD_HERE>") |
2. Install cloudflared on your machine …
SSH connection to Google Colaboratory and Transfering files from Google Drive Read More »