📅  最后修改于: 2023-12-03 15:32:54.670000             🧑  作者: Mango
If you're starting a new Django project or updating an existing one, you may need to create a requirements.txt file to list the dependencies needed for your project to work properly.
Here's a minimal requirements.txt file for a Django project in Python:
django>=3.2.0
This file specifies that your project requires Django version 3.2.0 or higher. You can change the version number to match the version you're using or upgrade to a newer version if needed.
If your project uses other Python packages, you can add them to the requirements.txt file, one package per line:
django>=3.2.0
requests>=2.26.0
This file specifies that your project requires Django 3.2.0 or higher, and the requests package version 2.26.0 or higher.
To install the packages listed in the requirements.txt file, you can use the following command:
pip install -r requirements.txt
This command will install all the packages listed in the file.
Note that this is a minimal requirements.txt file, meant to get you started with Django. Depending on your project's requirements, you may need to add more packages to the file. Be sure to test your project thoroughly after adding new packages to ensure their compatibility.
Happy coding with Django!