在Colab上运行GitHub代码

1、
首先第一步新建notebooks,同时修改GPU,一下步骤是打开打算存放文件的文件夹

!pwd

在这里插入图片描述
进入content文件

cd sample_data/

进入samle_data 文件
在这里插入图片描述

!ls

在Colab上运行GitHub代码_第1张图片
打开文件
2、复制GitHub上的代码到colab上
在Colab上运行GitHub代码_第2张图片
首先要复制你在GitHub上面复制网址

!git clone https://github.com/keras-team/keras.git

使用该语句将GitHub上的代码下载到你所需要的文件里
在这里插入图片描述

!pwd
cd /content/keras
!ls

进入到程序文件夹中

如果文件夹中含有压缩问文件可以用一下语句解压缩

from zipfile import ZipFile
file_name="data.zip"
#opening the zip file in read me mode
with ZipFile (file_name,'r')as zip:
  print('Extarcting of the file noow...')
  zip.extarctall()
  print('Done')
!rm -rf setup.py 

语句可以用于去除不想显示的文件夹

你可能感兴趣的:(colab)