如何快速查看当前依赖项 终端输入: pip freeze 或者: pip list 如何快速保存当前依赖项 终端输入: pip freeze > requirements.txt 如何快速安装所有项目依赖项 pip install -r requirements.txt