将Miniconda3-latest-Linux-x86_64.sh
下载到/opt/
路径
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
2.1 执行以下命令进行安装,并按照提示操作,直到安装完成。
bash Miniconda3-latest-Linux-x86_64.sh
2.2 一直按回车键,直到出现Please answer 'yes' or 'no':'
输入yes
2.3 指定安装路径,回车默认。
2.4 是否初始化Miniconda3,输入yes
Do you wish the installer to initialize Miniconda3
by running conda init? [yes|no]
[no] >>> yes
2.5 出现以下字样,即为安装完成
Thank you for installing Miniconda3!
2.6 如果你不希望在启动时自动激活 conda 的基础环境,你可以设置 auto_activate_base
参数为 false
。
conda config --set auto_activate_base false
2.7 查看conda 版本
conda --version
3.1 查看镜像源:
conda config --show channels
3.2 设置镜像:
#包含了一些基本的 Python 包、库和工具。
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
#这是 Anaconda 主要的通道,包含了大量的 Python 包和工具。如果你主要使用 Python 包,这是一个必要的通道。
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
#Conda Forge 是社区驱动的通道,包含了许多额外的 Python 包和工具。
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
#如果你需要在 Windows 上使用一些类似于 Unix 命令的工具,可以添加 MSYS2 通道。
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
conda config --set show_channel_urls yes
3.3 删除镜像源:
conda config --remove channels https://***