美文网首页工具癖
anaconda相关问题

anaconda相关问题

作者: waterchinap | 来源:发表于2017-11-17 15:04 被阅读0次

清华镜像站

Anaconda 镜像使用帮助

Anaconda 是一个用于科学计算的 Python 发行版,支持 Linux, Mac, Windows, 包含了众多流行的科学计算、数据分析的 Python 包。

Anaconda 安装包可以到以下地址下载
https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/

TUNA 还提供了 Anaconda 仓库的镜像,运行以下命令:

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes

即可添加 Anaconda Python 免费仓库。

运行

conda install numpy

测试一下吧。

Miniconda 镜像使用帮助

Miniconda 是一个 Anaconda 的轻量级替代,默认只包含了 python 和 conda,但是可以通过 pip 和 conda 来安装所需要的包。

Miniconda 安装包可以到

https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/

下载。

Conda 三方源

当前tuna还维护了一些anaconda三方源。

Conda Forge

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/

msys2

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/

bioconda

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/

menpo

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/menpo/

中科大镜像站

地址

https://mirrors.ustc.edu.cn/anaconda/

使用说明

Anaconda 安装包可在以下下载
https://mirrors.ustc.edu.cn/anaconda/archive/

添加USTC仓库镜像:
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/ conda config --set show_channel_urls yes

相关链接

| 官方主页: | https://www.continuum.io/ |

安装

  • 从国内镜像网站上下载文件
  • 安装
    bash ~/Downloads/Anaconda3-5.0.1-Linux-x86_64.sh
  • 网络上搜索,建议不要以root身份安装

使用

  • 创建虚拟环境
    conda create --name py3 python=3.x
  • 使用虚拟环境
    source activate py3
  • 退出一个虚拟环境
    source deactivate py3
  • 删除一个虚拟环境
    conda remove --name py3 --all
  • 更新CONDA
    conda update conda

相关文章

网友评论

    本文标题:anaconda相关问题

    本文链接:https://www.haomeiwen.com/subject/olrjvxtx.html