Skip to content

Commit 32879cd

Browse files
author
ziebam
committed
Change the docs to suggest .venv instead of venv
1 parent d91fecd commit 32879cd

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" from python3.3+
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" from python3.3+
55+
.venv\Scripts\activate
5656
py -m pip install -e .
5757
py -m pip --version
5858

0 commit comments

Comments
 (0)