We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3799208 + 6ab7dba commit a816e44Copy full SHA for a816e44
docs/html/development/getting-started.rst
@@ -42,17 +42,17 @@ You can then invoke your local source tree pip normally.
42
43
.. code-block:: shell
44
45
- virtualenv venv # You can also use "python -m venv venv" from python3.3+
46
- source venv/bin/activate
+ virtualenv .venv # You can also use "python -m venv .venv"
+ source .venv/bin/activate
47
python -m pip install -e .
48
python -m pip --version
49
50
.. tab:: Windows
51
52
53
54
- virtualenv venv # You can also use "py -m venv venv" from python3.3+
55
- venv\Scripts\activate
+ virtualenv .venv # You can also use "py -m venv .venv"
+ .venv\Scripts\activate
56
py -m pip install -e .
57
py -m pip --version
58
0 commit comments