共计 597 个字符,预计需要花费 2 分钟才能阅读完成。
pip
# 根本 | |
pip show numpy | |
pip list | |
pip list --outdated | |
# 装置与卸载 package | |
pip install numpy | |
# 同时装置多个包 | |
pip install numpy scipy matplotlib | |
pip uninstall numpy | |
pip install SomePackage-1.0-py2.py3-none-any.whl | |
# 导入导出 requirements | |
pip install -r requirements.txt | |
pip freeze > requirements.txt | |
# 清空缓存 | |
pip cache remove * |
conda
# 在 PowerShell 中应用须要初始化以下指令 | |
conda init powershell | |
# 列呈现有 conda 环境 | |
conda env list | |
# 创立新的环境 | |
conda create -n new_env | |
# 创立一个指定 Python 版本的新环境(会主动装置指定版本最新的稳固版本)conda create -n new_env python=3.x | |
# 从已有环境拷贝并创立一个新的环境 | |
conda create -n new_env --clone source_env | |
# 删除一个环境 | |
conda remove -n del_env --all | |
# 更新以后环境的 Python | |
conda install python=3.7 | |
# 更新以后环境的所有包 | |
conda update --all | |
# 清理缓存 | |
conda clean --all |
正文完