Miniconda安装

文章目录


前言

安装环境miniconda。


# 一、Miniconda 是什么?

Miniconda 是一个 Anaconda 的轻量级替代,默认只包含了 python 和 conda,但是可以通过 pip 和 conda 来安装所需要的包。

二、使用步骤

1.下载, 使用清华下载源,进入miniconda下载页面

代码如下:

​ https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/

​ https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/

wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-py37_4.8.3-Linux-x86_64.sh

2.安装

代码如下:

bash Miniconda3-py37_4.8.3-Linux-x86_64.sh

Miniconda安装

1.In order to continue the installation process, please review the license
agreement.
Please, press ENTER to continue

	**回车**
Miniconda安装
***q #退出阅读***

2.Do you accept the license terms? [yes|no]

Miniconda安装

yes

3.Miniconda3 will now be installed into this location:
/home/aiuser/miniconda3

  • Press ENTER to confirm the location

  • Press CTRL-C to abort the installation

  • Or specify a different location below

Miniconda安装
回车

4.Do you wish the installer to initialize Miniconda3
by running conda init? [yes|no]

Miniconda安装

	no

3.使用

配置清华镜像

vim ~/.condarc
#复制以下内容
channels:
  - defaults
show_channel_urls: true
default_channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
custom_channels:
  conda-forge: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  msys2: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  bioconda: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  menpo: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  pytorch: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  simpleitk: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud

每次重新进入环境需要

source ~/miniconda3/bin/activate
#创建环境 -n 环境名 指定python 版本
conda create -n test python=3.7
#查看当前所有环境
conda info -e
#退出当前环境
conda deactivate
#删除环境
conda env remove -n test

# 总结

activate
#删除环境
conda env remove -n test




<hr style=" border:solid; width:100px; height:1px;" color=#000000 size=1">
# 总结

<font color=#999AAA >使用conda非常方便。
上一篇:ubuntu安装miniconda


下一篇:Ubuntu 服务器环境下安装 Miniconda