Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的情况:我需要在另一台服务器上的计算机上具有相同的依赖项。
所以我在我的电脑上做了这个:
pip freeze > requirements.txt
比在远程服务器上:
我想从requirements.txt操作系统范围内安装要求。我怎样才能做到这一点?
requirements.txt
将文件移动到远程服务器并执行
pip install -r requirements.txt