miniconda安装使用
安装
下载
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh
chmod +x Miniconda3-latest-Linux-x86_64.sh
./Miniconda3-latest-Linux-x86_64.sh
更好channel
打开.condarc
channel
gedit ~/.condarc
打开网址把其框中中的内容复制到其中
开启虚拟环境
source ./miniconda3/bin/activate
使用
查看以及安装的虚拟环境
conda info -e
查看安装的库
conda list
创建虚拟环境
conda create -n name python=3.6
激活conda虚拟环境
conda activate name
删除conda虚拟环境
conda remove -n name
安装库
conda install libname
一些库安装
就是和pip install 命令相差太多的
- opencv
conda install -c menpo opencv3
- pytorch 各种版本参考官网