1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-24 07:30:12 +01:00

Merge pull request #5255 from Commandcracker/patch-1

Fixed Windows activation documentation
This commit is contained in:
Martin Donath 2023-04-07 18:14:11 +02:00 committed by GitHub
commit eb901a6138
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,12 +22,23 @@ just delete and recreate the environment. It's trivial to set up:
- Activate the environment with:
``` sh
. venv/bin/activate # (1)!
```
=== ":fontawesome-brands-windows: Windows"
1. Your terminal should now print `(venv)` before the prompt, which is
how you know that you are inside an environment.
``` sh
. venv/Scripts/activate # (1)!
```
1. Your terminal should now print `(venv)` before the prompt, which is
how you know that you are inside an environment.
=== ":material-linux: Linux, :material-apple: macOS"
``` sh
. venv/bin/activate # (1)!
```
1. Your terminal should now print `(venv)` before the prompt, which is
how you know that you are inside an environment.
- Exit the environment with: