安装Anaconda

前言

Anaconda指的是一个开源的Python发行版本,其包含了conda、Python等180多个科学包及其依赖项。安装anaconda时我们不需要事先安装python,因为安装完anaconda之后里边就会有python的解释器以及一些常用的包了。

环境

  • Windows10

下载

进入Anaconda的官网进行下载

conda an zhuang python conda安装Python很慢_官网


然后点击Download按钮就开始下载了

安装

  • 找到安装包所在的目录,双击安装包
  • conda an zhuang python conda安装Python很慢_pytorch_02

  • 点击Next
  • conda an zhuang python conda安装Python很慢_配置文件_03

  • 点击I Agree
  • conda an zhuang python conda安装Python很慢_官网_04

  • 选择你想安装的路径,之后一路默认就ok了
  • conda an zhuang python conda安装Python很慢_官网_05

  • 配置环境变量:如果你在安装过程中勾选了Add PATH 那个选项,那么你不需要额外配置环境变量,但是如果你没有勾选(默认是不勾选的),那么你需要按照以下标准去配置(路径根据自己的安装位置变化)

修改conda源(加速下载)

  • 通过 conda config 命令生成配置文件,这里,使用清华的镜像:https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    首先,打开CMD,执行命令:
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/msys2
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
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 --set show_channel_urls yes
  • 执行命令:
conda config --set show_channel_urls yes

此时,目录 C:\Users<你的用户名> 下就会生成配置文件.condarc,将里边-defaults删除,内容为:

channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge 
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/menpo/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main

show_channel_urls: true

以后如果想要再多添加源的话我们可以直接在这个文件中添加

  • 查看是否生效,通过命令 conda info 查看当前配置信息,内容如下,即修改成功,关注 channel URLs 字段内容

安装pytorch

安装

  • 去pytorch官网根据条件确定安装的命令
  • 打开CMD窗口,在命令行中键入上述命令,等待安装成功(一定要注意:删除后边的-c pytorch,不然自己设置的conda源是不会起效果的,因为会默认去pytorch的官网下载

验证

conda an zhuang python conda安装Python很慢_python_06


使用python导入相应的包,没有报错,证明安装成功