摘要:
![](https://img2024.cnblogs.com/blog/1341065/202408/1341065-20240804174632697-170380728.png) 阅读全文
摘要:
python -m venv day01 阅读全文
摘要:
列出当前环境中所有已安装的包 => pip freeze 将这些包名称和版本号导出到一个文件中 => pip freeze > requirements.txt 批量卸载 => pip uninstall -r requirements.txt -y 找到路径 => 手动删除requirements 阅读全文