mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
docs: update win cmd examples
This commit is contained in:
parent
5d77da84dc
commit
0cedf52aa4
1 changed files with 10 additions and 11 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue