##Jupyter notebook 上传文件夹
1.从GitHub上下载库的zip格式到本地
2.在jupyter notebook 上传zip 格式的压缩文件
3.解压文件夹

import zipfile
import os
files=zipfile.ZipFile('fouder.zip','r')
files.extractall(os.getcwd())  /默认当前目录
files.close()

over

更多推荐

解压GitHub压缩文件