抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >


Centos7 安装 Anaconda3

Anaconda 是一个免费开源的 Python 和 R 语言的发行版本,用于计算科学(数据科学、机器学习、大数据处理和预测分析),Anaconda 致力于简化包管理和部署。

安装

下载 Anaconda
方式一:官方网站

方式二:清华大学开源软件镜像站

可以下载到本地,然后通过 xftp 上传到 Contos 上

bash   Anaconda3-4.4.0-Linux-x86_64.sh

该按 enter 按,该 yes|no 的 yes。

source ~/.bashrc

然后重启终端,然后输入 python

Anaconda 虚拟环境

创建环境

conda create -n envname python=3.6 

删除环境

conda remove -n envname --all

激活环境

source activate envname

退出环境

source deactivate

Anaconda 换源

添加清华源

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
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 --set show_channel_urls yes

删源

conda config --remove-key channels

附录

清华大学开源软件镜像站

channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
ssl_verify: true

上海交通大学开源镜像站

channels:
- https://mirrors.sjtug.sjtu.edu.cn/anaconda/pkgs/main/
- https://mirrors.sjtug.sjtu.edu.cn/anaconda/pkgs/free/
- https://mirrors.sjtug.sjtu.edu.cn/anaconda/cloud/conda-forge/
ssl_verify: true

中国科学技术大学 USTC Mirror

channels:
- https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
- https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
- https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
ssl_verify: true

.bashrc 里面修改过 PATH 环境变量,添加过 anaconda/bin

vi ~/.bashrc

最后添加

conda deactivate
source .bashrc 
推荐阅读
How to Setup Your Python Environment for Machine Learning With Anaconda How to Setup Your Python Environment for Machine Learning With Anaconda 杂记片段 杂记片段 CentOS7安装Python3 CentOS7安装Python3 xrdp连接远程桌面 xrdp连接远程桌面 Flume 负载均衡 load balancer Flume 负载均衡 load balancer Flume 的安装部署 Flume 的安装部署

留言区

Are You A Robot?