conda安装

conda简介

Conda 是一个开源的软件包管理系统和环境管理系统,用于安装多个版本的软件包及其依赖关系,并在它们之间轻松切换。

Conda 是为 Python 程序创建的,适用于 Linux,OS X 和Windows,也可以打包和分发其他软件 [1] 。

最流行的 Python 环境管理工具 。

安装conda

1.下载安装脚本

wget -c https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh# 适合于linux的

curl -O https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh # 适合于Mac用户

2.执行安装命令

linux用户

chmod 777 Miniconda3-latest-Linux-x86_64.sh #给执行权限

bash Miniconda3-latest-Linux-x86_64.sh #运行

mac用户

chmod 777 Miniconda3-latest-MacOSX-x86_64.sh

bash Miniconda3-latest-MacOSX-x86_64.sh

3.添加频道

重新打开终端,执行下面命令

国内清华镜像(强烈推荐)

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 --add channels bioconda

conda config --add channels conda-forge

conda常用命令

列出当前 conda 环境所链接的软件包

conda list


# 创建一个 conda 环境,名称为 tf 

conda create -n 环境名 -c 镜像源

参考链接:https://www.freesion.com/article/5134288233/

你可能感兴趣的:(conda安装)