Skip to content

Commit 0f0d5e1

Browse files
committed
Fix invalid command
1 parent 6f7e29b commit 0f0d5e1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/tutorials/installing-packages.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -653,15 +653,15 @@ Install `setuptools extras`_.
653653
654654
python3 -m pip install SomePackage[PDF]
655655
python3 -m pip install SomePackage[PDF]==3.0
656-
python3 -m pip install -e .[PDF]==3.0 # editable project in current directory
656+
python3 -m pip install -e .[PDF] # editable project in current directory
657657
658658
.. tab:: Windows
659659

660660
.. code-block:: bat
661661
662662
py -m pip install SomePackage[PDF]
663663
py -m pip install SomePackage[PDF]==3.0
664-
py -m pip install -e .[PDF]==3.0 # editable project in current directory
664+
py -m pip install -e .[PDF] # editable project in current directory
665665
666666
----
667667

0 commit comments

Comments
 (0)