Ubuntu 安装Anaconda
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
1. 下载安装文件:
以安装3.5版本为例:
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.0.0-Linux-x86_64.sh
其他版本可以到https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/自行查找。
2. 安装
sudo bash Anaconda3-5.0.0-Linux-x86_64.sh
按照提示安装即可,默认将安装在~目录下,如需更改,可以自行指定。最后允许将Anaconda路径添加到bashrc中。
3. 验证
安装完成之后,重新进入shell环境,然后进入python环境,提示Anaconda即安装成功。
4. 切换系统自带python和Anaconda:
通过alias设置,在bashrc中添加:
alias python="/usr/bin/python2.7"
alias pyana="/home/username/anaconda3/bin/python3.6"
这样直接输入python使用的是系统自带python版本,输入pyana使用的则是Anaconda。
5. 修改conda环境名称:
借助clone来完成,以环境名称从x改为y为例:
conda create --name y --clone x
conda remove --name x --all
6. 查看conda环境信息:
conda info --env
7. 创建conda环境:
conda create -n py2 python=2.7
其中,-n是指名称,py2是要设置的环境名称,python=2.7是要安装在环境中的包的列表以及指定版本。
8. 修改env存储位置
修改home目录下的.condarc文件,如无该文件,可自行创建。
在.condarc文件中加入
envs_dirs:
- /desired/path
9. 添加/删除源,以清华源为例:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献7条内容
所有评论(0)