stafino
stafino

Reputation: 37

Need a downgrade of Django on MacOS

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.

Upvotes: 0

Views: 188

Answers (1)

arulmr
arulmr

Reputation: 8836

Install using the command

pip3 install django==2.2.17

This will install the version you have specified.

Upvotes: 1

Related Questions