Conda包管理
包安装
油管安装,pip
pip list --outdated #查看过期库
python -m pip install --upgrade (lib name) #升级过期库
python - m pip install (lib name) #安装库
whl安装
- 先安装wheel: pip install wheel
- 下载库*.whl文件
- *pip install *.whl
注:CMD 切换工作路径后pip 失效
直接:pip install D:/python/ananconda3/wordcloud-1.3.1-cp36-cp36m-win_amd64.whl
手动安装包
- 下载包文件
- activate 相应环境
- 切换到包中setup.py路径
- python setup.py install
更新
conda update co