0

I'm currently using Django version-3.1.5 but for my university course it's recommended for testing version-2.2.17. Was wondering how to downgrade using MacOS Terminal? When I use pip3 install Django-2.2.17 I get a error message saying I'm already on a newer version of Django.

stafino
  • 37
  • 10
  • Does this answer your question? [Installing specific package versions with pip](https://stackoverflow.com/questions/5226311/installing-specific-package-versions-with-pip) – arulmr Jan 15 '21 at 09:32

1 Answers1

1

Install using the command

pip3 install django==2.2.17

This will install the version you have specified.

arulmr
  • 8,620
  • 9
  • 54
  • 69