使用freeze 给所有模块搬家

导出安装模块的文档
pip freeze > my_freeze.txt

或者指定地址
pip freeze > e:\my_freeze.txt


在另一个环境下,安装该文档里的模块
pip install -r my_freeze.txt

相关文章: