如果你有了一台新电脑 想把老电脑配置的python环境复刻出来
可以用两行指令轻松完成
在老的电脑上:输入
pip freeze > requirements.txt
然后把这个txt放在新电脑里
安装python和pip的方法参考:
https://blog.csdn.net/weixin_41147129/article/details/87904504
然后打开打开cmd
输入
pip install -r requirement.txt
这里如果出现 runtime erro 科学一下,改成全局 就可以正常安装了。
cat requirements.txt |xargs -n 1 pip install