參考:https://www.cnblogs.com/Datapotumas/p/6293309.html
1、下載
conda下載網址:https://conda.io/miniconda.html
目前最新版本4.5.9:wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
2、安裝
bash Miniconda3-latest-Linux-x86_64.sh -p /share/nas1/renpp/biosoft/Miniconda3/ -u ##安裝,其余的都yes.
source ~/.bashrc ##或者手動添加 export PATH="/share/nas1/renpp/biosoft/Miniconda3/bin:$PATH"
3、卸載
rm -rf ~/miniconda && rm -rf ~/.condarc ~/.conda ~/.continuum
4、常用命令
conda list #list packages installed
conda search #see all the packages that are available
conda install <package-name> ## install a package
conda update --help ##查看某一命令的幫助,如update命令及remove命令
環境管理命令:conda env -h
創建環境:conda create --name your_env_name
