conda env list2、创建环境
conda create -n envname python=3.63、删除环境
conda remove -n envname --all4、激活环境
conda activate envname5、查看当前环境下的所有包
conda list6、安装包
pip install xxxx 或者 conda install xxxx 下载时,可以加上国内的镜像源 pip install xxx -i https://pypi.douban.com/simple/
中国科学技术大学 : https://pypi.mirrors.ustc.edu.cn/simple
豆瓣:https://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple



