Last updated 1 hour ago
下载 Miniconda 安装脚本:
运行安装脚本:
按照提示完成安装。
初始化 Conda:
创建一个新的环境并安装 Python 3.9:
激活新环境:
验证 Python 版本:
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
source ~/miniconda3/etc/profile.d/conda.sh source ~/.bashrc
conda create -n py39 python=3.9
conda activate py39
python --version