Conda管理你的Python环境
Conda
Conda 主要用户管理Anaconda下的Python版本环境
Conda 常用网站
https://www.anaconda.com/distribution/#linux
https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/
成都创新互联公司致力于互联网网站建设与网站营销,提供成都网站设计、做网站、成都外贸网站建设公司、网站开发、seo优化、网站排名、互联网营销、小程序开发、公众号商城、等建站开发,成都创新互联公司网站建设策划专家,为不同类型的客户提供良好的互联网应用定制解决方案,帮助客户在新的全球化互联网环境中保持优势。
Conda 安装
- Centos7
yum install conda
- Anaconda Download
https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
Conda 配置
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 安装 Python Version
conda create -n py34 python=3.4
Conda 安装 Python module
conda install -n py34 numpy
Conda 切换 Python Version
conda activation py34
Conda 常用命令介绍
conda create -n pyname python=version
conda list
conda info -e
conda remove -n pyname
网页题目:Conda管理你的Python环境
链接URL:http://scyanting.com/article/pcgseh.html