conda --version 检查conda版本
conda update conda 升级conda
--------------------------------------环境操作--------------------------------------
conda info --envs 列出所有环境列表
conda create --name snowflake biopython 创建新环境(名字叫snowflake )
conda create -n bunnies python=3 Astroid Babel 创建并命名一个新环境,然后安装另一个版本的python以及两个包 Astroid 和 Babel
conda create -n flowers --clone snowflakes 复制环境
conda remove -n flowers --all 删除环境
conda info -e 确认环境已删除
activate snowflake 切换环境//conda create -h 了解更多信息
deactivate 退出工作环境
-
---------------------------------------包操作---------------------------------------
conda list 查看该环境中包和其版本的列表
conda search beautifulsoup4 检查需要的包是否可以通过conda安装
conda install --name bunnies beautifulsoup4 在bunnies 环境中安装beautifulsoup4包
conda install--channel https://conda .anaconda.ort/pandas bottleneck 在官网上查找安装包
conda remove -n bunnies iopro 在bunnies 环境中移除iopro包
conda install mingw libpython
-----------------------更新pip方法---------------------------
1.easy_install pip==18.1
2.python -m pip install --upgrade pip
原文地址:https://www.cnblogs.com/ghj-at/p/12287897.html