We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f7e29b commit 0f0d5e1Copy full SHA for 0f0d5e1
1 file changed
source/tutorials/installing-packages.rst
@@ -653,15 +653,15 @@ Install `setuptools extras`_.
653
654
python3 -m pip install SomePackage[PDF]
655
python3 -m pip install SomePackage[PDF]==3.0
656
- python3 -m pip install -e .[PDF]==3.0 # editable project in current directory
+ python3 -m pip install -e .[PDF] # editable project in current directory
657
658
.. tab:: Windows
659
660
.. code-block:: bat
661
662
py -m pip install SomePackage[PDF]
663
py -m pip install SomePackage[PDF]==3.0
664
- py -m pip install -e .[PDF]==3.0 # editable project in current directory
+ py -m pip install -e .[PDF] # editable project in current directory
665
666
----
667
0 commit comments