谷歌云主机上使用colaboratory,持久保存文件

colaboratory挂载谷歌主机

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

保存jupyter文件到谷歌云主机

根据上面的操作切换到指定的目录,就可以直接保存

from google.colab import files

with open('example.txt', 'w') as f:
  f.write('some content')
  
% ls

主机克隆git项目,但文件停止时会清除,建议使用上面方法保存在云主机上

# Clone the entire repo.
!git clone -l -s git://github.com/jakevdp/PythonDataScienceHandbook.git cloned-repo
%cd cloned-repo

 

下载文件到本地电脑

from google.colab import files

with open('example.txt', 'w') as f:
  f.write('some content')

files.download('example.txt')

以上就可以开心的使用colaboratory

 

你可能感兴趣的:(人工智能)