Skip to content

Commit a816e44

Browse files
authored
Merge pull request #10520 from ziebam/iss10518-update-development-docs
Change the development docs to suggest .venv instead of venv
2 parents 3799208 + 6ab7dba commit a816e44

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/html/development/getting-started.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ You can then invoke your local source tree pip normally.
4242

4343
.. code-block:: shell
4444
45-
virtualenv venv # You can also use "python -m venv venv" from python3.3+
46-
source venv/bin/activate
45+
virtualenv .venv # You can also use "python -m venv .venv"
46+
source .venv/bin/activate
4747
python -m pip install -e .
4848
python -m pip --version
4949
5050
.. tab:: Windows
5151

5252
.. code-block:: shell
5353
54-
virtualenv venv # You can also use "py -m venv venv" from python3.3+
55-
venv\Scripts\activate
54+
virtualenv .venv # You can also use "py -m venv .venv"
55+
.venv\Scripts\activate
5656
py -m pip install -e .
5757
py -m pip --version
5858

0 commit comments

Comments
 (0)