当前位置:   article > 正文

ubuntu安装miniconda_ubuntu brashrc miniconda

ubuntu brashrc miniconda

Anaconda是一个开源的Python包管理器,而Miniconda则是轻量级的Anaconda

下载地址

ubuntu安装

在下载地址里面下载相应文件
或者

sudo apt-get install wget

wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
  • 1
  • 2
  • 3

之后运行该文件

bash Miniconda3-latest-Linux-x86_64.sh
  • 1
# 一直按回车然后输入yes
please answer 'yes' or 'no':
>>> yes

# 选择安装路径, 文件名前加点号表示隐藏文件
Miniconda3 will now be installed into this location:
>>> ~/.miniconda3

# 添加配置信息到 ~/.bashrc文件
Do you wish the installer to initialize Miniconda3 by running conda init? [yes|no]
[no] >>> yes
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

运行配置信息文件

source ~/.bashrc
  • 1

测试是否安装成功

conda --version
  • 1

创建虚拟环境

conda create -n venv python=3.6
  • 1

激活虚拟环境

conda activate venv
  • 1

退出虚拟环境

conda deactivate
  • 1

关闭每次打开终端自动进入base环境

conda config --set auto_activate_base false
  • 1

在最新的anaconda安装后将其加入到bashrc中后,会默认自动激活基础环境,上面的命令就是将其自动激活的true更改为false,即可关闭虚拟环境,以后需要使用直接用命令行即可。

conda换源

将以下内容写在~/.condarc
vim ~/.condarc

  • 清华源
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/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
ssl_verify: true
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 中国科学技术大学源
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
  • 1
  • 2
  • 3
  • 4
  • 5

pip换源

pip的一些国内源

         阿里云 http://mirrors.aliyun.com/pypi/simple/ 
  中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 
  豆瓣(douban) http://pypi.douban.com/simple/ 
  清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 
  中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
  • 1
  • 2
  • 3
  • 4
  • 5

临时使用

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
  • 1

注意,simple 不能少, 是https 而不是 http

永久修改
ubuntu
修改~/.pip/pip.conf(没有就创建一个),内容如下

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/578400
推荐阅读
相关标签
  

闽ICP备14008679号