This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author brett.cannon
Recipients alexis, brett.cannon, docs@python, dstufft, eric.araujo, lemburg, ncoghlan, paul.moore, tarek
Date 2016-01-05.17:43:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1452015796.73.0.274069830205.issue26017@psf.upfronthosting.co.za>
In-reply-to
Content
If you look at https://docs.python.org/3/installing/index.html it lists two commands:

python -m pip install SomePackage==1.0.4    # specific version
python -m pip install 'SomePackage>=1.0.4'  # minimum version

If you notice that beyond the change from `==` to `>=`, you will notice one quotes its argument while the other one doesn't. This is a UNIX shell thing due to what `>` means. But if you don't know how the UNIX shell works this could be easily overlooked. It would be best to simply quote both examples and avoid people messing up by leaving off the quotes.
History
Date User Action Args
2016-01-05 17:43:16brett.cannonsetrecipients: + brett.cannon, lemburg, paul.moore, ncoghlan, tarek, eric.araujo, docs@python, alexis, dstufft
2016-01-05 17:43:16brett.cannonsetmessageid: <1452015796.73.0.274069830205.issue26017@psf.upfronthosting.co.za>
2016-01-05 17:43:16brett.cannonlinkissue26017 messages
2016-01-05 17:43:16brett.cannoncreate