[Django]-Pip install the latest version

57πŸ‘

-U or --upgrade will update listed packages

Example:

$ pip install -U django-simple-captcha 
# OR
$ pip install --upgrade django-simple-captcha

pip3

$ pip3 install -U django-simple-captcha 
# OR
$ pip3 install --upgrade django-simple-captcha

pip3 with sudo (to install system-wide, this may be required in some cases)

$ sudo pip3 install -U django-simple-captcha 
# OR
$ sudo pip3 install --upgrade django-simple-captcha

πŸ‘€Brianjs

6πŸ‘

Just remove ==0.5.* and the latest available version of django-simple-captcha for your OS will be installed if available.


To view the current installed version use:

pip show django-simple-captcha

what if I want the latest minor version?

You can try:

pip install "package>=0.2,<0.3"

Here’s a pip Cheatsheet

πŸ‘€Pedro Lobito

Leave a comment