docs: update win cmd examples

This commit is contained in:
Oleg A 2023-08-18 02:35:35 +03:00
parent 5d77da84dc
commit 0cedf52aa4
No known key found for this signature in database
GPG key ID: 5FE046817A9657C5

View file

@ -41,26 +41,25 @@ Linux / macOS:
source .venv/bin/activate
Windows cmd
.. code-block:: text
.\.venv\Scripts\activate
Windows PowerShell
.. code-block:: powershell
.\.venv\Scripts\Activate.ps1
.\.venv\Scripts\activate.ps1
To check it worked, use described command, it should show the :code:`pip` location inside
the isolated environment
Linux / macOS:
To check it worked, use described command, it should show the :code:`pip` version and location
inside the isolated environment
.. code-block::
which pip
pip -V
Windows PowerShell
.. code-block::
Get-Command pip
Also make sure you have the latest pip version in your virtual environment to avoid
errors on next steps: