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

Fixed Windows activation documentation

On Windows, the activation script is stored in `venv/Scripts/activate`
I hope the OS selection menu works, a test of it might be needed
This commit is contained in:
Commandcracker 2023-03-24 23:23:22 +01:00 committed by GitHub
parent 6a4be6b723
commit c30e8ff689
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,6 +22,18 @@ just delete and recreate the environment. It's trivial to set up:
- Activate the environment with:
=== ":fontawesome-brands-windows: Windows"
``` 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"
``` sh
. venv/bin/activate # (1)!
```