编程语言
首页 > 编程语言> > Python 已安装三方库的 导出、导入、卸载

Python 已安装三方库的 导出、导入、卸载

作者:互联网

将当前环境中已安装的三方库及对应版本 输出到文本中

pip freeze > requirements.txt



卸载当前环境中所有安装的库

pip uninstall -r requirements.txt -y



安装文本中 对应版本的所有三方库

pip install -r requirements.txt

标签:三方,requirements,Python,导入,卸载,pip,txt,安装
来源: https://www.cnblogs.com/jiyu-hlzy/p/15978889.html