ubuntu install Miniconda3(轻量级conda)
Miniconda3 是一个包含 conda 和 Python 的小型发行版,适合需要灵活定制python环境的用户。
一、下载Miniconda3
bash
sudo apt-get update
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
二、添加可执行权限
bash
sudo chmod +x Miniconda3-latest-Linux-x86_64.sh
三、执行该脚本
在执行脚本过程中,按住回车,"yes or no" ,输入yes后等待安装安装完成。
c
./Miniconda3-latest-Linux-x86_64.sh
四、检查版本
bash
conda --version