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?

  1. django-admin startproject requirements.txt
  2. python install -r requirements.txt
  3. pip install -r requirements.txt
  4. pip install Django

Answer: The correct answer of the above question is Option C:pip install -r requirements.txt