Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ Virtual environments are independent groups of Python libraries, one for each
project. Packages installed for one project will not affect other projects or
the operating system's packages.

Python comes bundled with the :mod:`venv` module to create virtual
Python comes bundled with the :mod:`venv`
module to create virtual
environments.


Expand Down Expand Up @@ -125,6 +126,13 @@ Before you work on your project, activate the corresponding environment:

> .venv\Scripts\activate

.. note::

If you are using Git Bash on Windows, activate the
virtual environment with:

``source .venv/Scripts/activate``

Your shell prompt will change to show the name of the activated
environment.

Expand Down