linux下的conda环境配置
总要配置环境,记下步骤来就方便很多啦~ linux: Ubuntu 18.04 LTS
- 下载最新版本的miniconda
1 | wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh |
- 安装miniconda
1 | sh Miniconda3-latest-Linux-x86_64.sh |
安装过程中可以指定安装目录
并 running conda init
- 查看conda的配置
1 | cat .bashrc |
- 让配置生效
1 | source ~/.bashrc |
- 查看正在使用的conda
1 | which conda |
=== 至此,conda就安装好啦