我有一个在windows上制作的Django项目(在虚拟环境和python 3.7,postgres15中)。 我在centos7上安装python 3.7和postgres15。我可以在 Centos7 上使用这个环境文件夹而不在 Centos7 上安装
requirements.txt
库包还是必须安装 requirements.txt
库包?
您需要在 CentOs 计算机中重新创建虚拟环境并安装requirements.txt中的软件包。
python3.7 -m venv venv
source venv/bin/activate
pip install -r requirements.txt