1. 下载

到清华镜像源下载miniconda安装程序https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/
挑选合适的下载,例如:

wget -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-py37_4.8.3-Linux-x86_64.sh
清华镜像源无法使用,新的镜像地址
https://mirrors.bfsu.edu.cn/anaconda/miniconda/
或者执行命令
wget -c https://mirrors.bfsu.edu.cn/anaconda/miniconda/Miniconda3-py39_23.5.0-3-Linux-x86_64.sh

2. 安装

  1. bash Miniconda3-py37_4.8.3-Linux-x86_64.sh
  2. 遇到Do you accept the license terms? [yes|no]
    回车
    q键退出阅读license
    yes
  3. Miniconda3 will now be installed into this location:
    /home/hfy/miniconda3
    回车默认
  4. 可以选择不初始化,使用conda时需要先source ~/miniconda3/bin/activate
    Do you wish the installer to initialize Miniconda3
    by running conda init? [yes|no]
  5. 启动
    source ~/miniconda3/bin/activate
  6. 添加镜像源
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda
    conda config --set show_channel_urls true

    移除之前的清华镜像源
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda 

添加中科大镜像源

conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/bioconda/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/
conda config --set show_channel_urls yes

配置pip的镜像源

pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple/

在Linux上执行pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple/命令报错"ERROR: unknown command ‘config’",可能是因为你的pip版本较旧,不支持config命令。

你可以尝试更新pip到最新版本,然后再执行该命令。可以使用以下命令来更新pip:
shellpip install --upgrade pip
更新完成后,再次执行pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple/命令,应该就能成功设置镜像源了。

如果更新pip仍然无法解决问题,你可以尝试手动编辑pip的配置文件来设置镜像源。在Linux上,pip的配置文件通常位于~/.pip/pip.conf/etc/pip.conf。你可以打开该文件,添加以下内容:
[global]index-url = https://pypi.mirrors.ustc.edu.cn/simple/
保存文件后,再次运行pip命令,应该会使用新的镜像源。

3. 常用命令

  1. 查看版本
    conda --version
  2. 创建环境
    conda create --name your_env_name <python=版本> <python包>
  3. 删除环境
    conda remove --name your_env_name --all
  4. 查看创建环境
    conda env list
  5. 进入某个环境
    conda activate env_name
  6. 退出环境
    conda deactivate

参考文章:
Ubuntu miniconda3安装与环境配置
Conda常用命令整理

Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐