在Google Colab中安装使用MiniConda

方承弼
2023-12-01

在Colab中跑项目的时候,可以直接导入本地环境配置,省去一个一个安装的包的麻烦。但是很多人不知道在Colab中使用Conda,简单的说下。

安装MiniConda

安装Miniconda3/usr/local路径下。

%%bash
MINICONDA_INSTALLER_SCRIPT=Miniconda3-4.5.4-Linux-x86_64.sh
MINICONDA_PREFIX=/usr/local
wget https://repo.continuum.io/miniconda/$MINICONDA_INSTALLER_SCRIPT
chmod +x $MINICONDA_INSTALLER_SCRIPT
./$MINICONDA_INSTALLER_SCRIPT -b -f -p $MINICONDA_PREFIX

查看版本号:

!conda --version

* 这时查看python版本已经是miniconda中自带的版本了,但是执行的还是/usr/local/bin/python下系统自带的版本。

更新 Conda

%%bash
conda install --channel defaults conda --yes
conda update --channel defaults --all --yes

添加系统路径 :

import sys
_ = (sys.path
        .append("/usr/local/lib/python3.7/site-packages"))

添加完成之后 查看一下系统路径

import sys
sys.path
['',
 '/env/python',
 '/usr/lib/python37.zip',
 '/usr/lib/python3.7',
 '/usr/lib/python3.7/lib-dynload',
 '/usr/local/lib/python3.7/dist-packages',
 '/usr/lib/python3/dist-packages',
 '/usr/local/lib/python3.7/dist-packages/IPython/extensions',
 '/root/.ipython',
 '/usr/local/lib/python3.7/site-packages']

 类似资料: