Question: You have inherited a Django project and need to get it running locally. It comes with a requirements.txt file containing all its dependencies. Which command should you use?
- django-admin startproject requirements.txt
- python install -r requirements.txt
- pip install -r requirements.txt
- pip install Django
Answer: The correct answer of the above question is Option C:pip install -r requirements.txt