Colab连接到GoogleDrive并运行自己的文件
COLA
🥤 COLA: Clean Object-oriented & Layered Architecture
项目地址:https://gitcode.com/gh_mirrors/col/COLA
免费下载资源
·
colab 一般很流畅,掉线问题确实烦人
0. 查看GPU版本
# colab 查看 GPU 信息
!/opt/bin/nvidia-smi
1. 代码连接
# 运行后出现URL,点击获得你的认证码
from google.colab import drive
drive.mount('/content/drive')
# 列出你云盘里有啥
!ls "/content/drive//My Drive/"
# 读取云盘里的文件喽,我这里读的是 bbc-text.csv
with open("/content/drive//My Drive/bbc-text.csv", 'r') as csvfile:
2. 在 colab 里左侧有个文件夹标志的 Files,
进去后上面有个 google drive 的标志,Mount Drive(挂载Drive),
点它挂载上就可以了,下面就列出 drive 文件夹,代码里就可访问云盘文件了
2.1 命令行运行py文件
# 显示当前工作目录
!pwd
# /content
# 显示当前工作目录中有那些文件、文件夹
!ls
# drive sample_data
# 打开云盘文件夹
cd drive
# /content/drive
# 显示当前工作目录中有那些文件、文件夹
ls
# 'My Drive'/
# 打开My Drive文件夹,空格需要转义
cd My\ Drive
# /content/drive/My Drive
# 这里要打开的就是我自己的文件夹了
cd baseline
# /content/drive/My Drive/baseline
# 命令行运行 py 文件
!python hello.py
2.2 命令行运行py文件
参考帖子:~~~~≡ω≡~~~~
!python "/content/drive/My Drive/hello.py"
GitHub 加速计划 / col / COLA
11.69 K
3.04 K
下载
🥤 COLA: Clean Object-oriented & Layered Architecture
最近提交(Master分支:3 个月前 )
bda50471 - 5 个月前
65e9e39d
bump org.apache.maven.plugins:maven-compiler-plugin from 3.11.0 to 3.13.0 (#496)
bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.2.5 (#497)
bump org.springframework.boot:spring-boot-dependencies from 3.1.0 to 3.3.0.(#498)
bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.0 to 3.7.0 (#499)
bump commons-cli:commons-cli from 1.5.0 to 1.8.0 (#500)
bump org.jacoco:jacoco-maven-plugin from 0.8.10 to 0.8.12 (#501)
bump org.apache.maven.plugins:maven-source-plugin from 3.2.1 to 3.3.1 (#502)
bump org.wiremock:wiremock-standalone from 3.0.1 to 3.0.3 (#503)
5 个月前
更多推荐
已为社区贡献6条内容
所有评论(0)