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::
84
84
Python.
85
85
86
86
It'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::
88
90
89
91
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
91
93
92
94
Normally, if a suitable module is already installed, attempting to install
93
95
it again will have no effect. Upgrading existing modules must be requested
You can’t perform that action at this time.
0 commit comments