Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5479694

Browse files
committed
DOC: add python -m to pip incantations
1 parent 6137a38 commit 5479694

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

INSTALL.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,16 +105,16 @@ if installation is done this way. Also, editable mode allows your code changes
105105
to be instantly propagated to your library code without reinstalling (though
106106
you will have to restart your python process / kernel): ::
107107

108-
pip install -e .
108+
python -m pip install -e .
109109

110110
If you're not developing, it can be installed from the source directory with
111111
a simple ::
112112

113-
pip install .
113+
python -m pip install .
114114

115115
To run the tests you will need to install some additional dependencies: ::
116116

117-
pip install -r requirements/dev/dev.txt
117+
python -m pip install -r requirements/dev/dev.txt
118118

119119
.. warning ::
120120

0 commit comments

Comments
 (0)