File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -84,10 +84,12 @@ dependencies from the Python Packaging Index::
8484 Python.
8585
8686It's also possible to specify an exact or minimum version directly on the
87- command line::
87+ command line. When using comparator operators such as ``> ``, ``< `` or some other
88+ special character which get interpreted by shell, the package name and the
89+ version should be enclosed within double quotes::
8890
8991 python -m pip install SomePackage==1.0.4 # specific version
90- python -m pip install ' SomePackage>=1.0.4' # minimum version
92+ python -m pip install " SomePackage>=1.0.4" # minimum version
9193
9294Normally, if a suitable module is already installed, attempting to install
9395it again will have no effect. Upgrading existing modules must be requested
You can’t perform that action at this time.
0 commit comments