linux下的miniconda的安装

安装

[Linux] Miniconda安装及其使用 - Bioinfarmer - 博客园

conda的安装与使用(2021-04-27更新) - 简书

//安装miniconda
sh Miniconda3-latest-Linux-x86_64.sh


安装选项
Miniconda3 will now be installed into this location:
/root/miniconda3

  - Press ENTER to confirm the location
  - Press CTRL-C to abort the installation
  - Or specify a different location below

[/root/miniconda3] >>>  此处输入自定义安装的miniconda路径
PREFIX=/root/miniconda3
Unpacking payload ...

使用

设置国内源

conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ 
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/ conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/linux-64/ 
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/ 
conda config --set show_channel_urls yes

查看设置情况

conda config --show

conda命令

Anaconda-用conda创建python虚拟环境 - 知乎

//使用版本
conda -V
//查看conda的虚拟环境
conda env list
//创建conda环境
conda create -n your_env_name python=x.x
//删除虚拟环境
conda remove -n your_env_name --all
/进入虚拟环境
source activate your_env_nam
//退出虚拟环境
conda deactivate

你可能感兴趣的:(linux,python)