You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This happens with Python 2.7.12, the builtin version of macOS and with Python 3.6.0rc1 as well.
As a workaround I've used: pip2 list --outdated|cut -d' ' -f1|xargs pip2 install --upgrade.
If you want it to be interactive you could do something like pip2 list --outdated|vipe|cut -d' ' -f1|xargs pip2 install --upgrade.
The text was updated successfully, but these errors were encountered:
Just for completeness: does this only happen with global packages, or also in a virtual environment? In the former case, using a virtual environment may be another possible workaround.
$ pip2 list -o
DEPRECATION: The default format will switch to columns in the future. You can use --format=(legacy|columns) (or define a format=(legacy|columns) in your pip.conf under the [list] section) to disable this warning.
autopep8 (1.2.4) - Latest: 1.3.1 [sdist]
... [many more packages here]
wrapt (1.10.8) - Latest: 1.10.10 [sdist]
while
$ pip2 install pip-review
Collecting pip-review
Using cached pip_review-0.5.2-py2.py3-none-any.whl
Requirement already satisfied: packaging in /usr/local/lib/python2.7/site-packages (from pip-review)
Requirement already satisfied: pip in /usr/local/lib/python2.7/site-packages (from pip-review)
Requirement already satisfied: six in /usr/local/lib/python2.7/site-packages (from packaging->pip-review)
Requirement already satisfied: pyparsing in /usr/local/lib/python2.7/site-packages (from packaging->pip-review)
Installing collected packages: pip-review
Successfully installed pip-review-0.5.2
$ pip-review
Everything up-to-date
About @jgonggrijp's question, I am not using virtual environments.
This happens with Python 2.7.12, the builtin version of macOS and with Python 3.6.0rc1 as well.
As a workaround I've used:
pip2 list --outdated|cut -d' ' -f1|xargs pip2 install --upgrade
.If you want it to be interactive you could do something like
pip2 list --outdated|vipe|cut -d' ' -f1|xargs pip2 install --upgrade
.The text was updated successfully, but these errors were encountered: