Answers for "colab download file"

7

colab mount drive

from google.colab import drive
drive.mount('/content/drive')

#Optional: move to the desired location:
%cd drive/My Drive/DIRECTORY_IN_YOUR_DRIVE
Posted by: Guest on November-10-2020
3

download from colab

from google.colab import files
files.download("path")
Posted by: Guest on August-06-2020
7

colab download file from url

!wget yoururl
#that's it
Posted by: Guest on January-24-2021

Browse Popular Code Answers by Language