GoogleColab修改python版本
COLA
🥤 COLA: Clean Object-oriented & Layered Architecture
项目地址:https://gitcode.com/gh_mirrors/col/COLA
免费下载资源
·
前言
使用GoogleColab时,发现项目运行不了,经过排查之后,发现是python版本的问题,之前的项目在本地测试是python版本是3.7,但是GoogleColab
的python版本是3.10,所以需要修改python版本,下面记录一下过程。
步骤
首先我们查看python版本
!python --version
#3.10
下面进行修改python版本到3.7
安装python3.7
!sudo apt-get update -y
!sudo apt-get install python3.7
切换到python3.7
!sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7 1
之后再检查一边python版本
!python --version
#3.7.17
注意:如果安装后没有任何变化
使用此命令手动选择python版本,执行后会显示已安装python版本的列表,可以根据自己的需求进行切换
!sudo update-alternatives --config python3
请注意,重新启动内核后所有更改都将丢失。每个运行时都会为您提供一个全新的 google colab。
参考
google-colaboratory - 如何更新 Google Colab Python 版本?
update-alternatives:的使用
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 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)