[Django]-Correct way to update django to a specific (but not most recent) version via pipenv

3👍

You can use the command pipenv install django=='2.2.15' to make update to a specific version.

Leave a comment