We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3567651 commit 76d9a6bCopy full SHA for 76d9a6b
Doc/installing/index.rst
@@ -84,10 +84,12 @@ dependencies from the Python Packaging Index::
84
Python.
85
86
It's also possible to specify an exact or minimum version directly on the
87
-command line::
+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::
90
91
python -m pip install SomePackage==1.0.4 # specific version
- python -m pip install 'SomePackage>=1.0.4' # minimum version
92
+ python -m pip install "SomePackage>=1.0.4" # minimum version
93
94
Normally, if a suitable module is already installed, attempting to install
95
it again will have no effect. Upgrading existing modules must be requested
0 commit comments