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
- [Django]-Django models β how to filter number of ForeignKey objects
- [Django]-How to show warnings in py.test
- [Django]-How can I call a custom Django manage.py command directly from a test driver?
Source:stackexchange.com