File tree 1 file changed +16
-5
lines changed 1 file changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,23 @@ just delete and recreate the environment. It's trivial to set up:
22
22
23
23
- Activate the environment with:
24
24
25
- ``` sh
26
- . venv/bin/activate # (1)!
27
- ```
25
+ === ":fontawesome-brands-windows: Windows"
26
+
27
+ ``` sh
28
+ . venv/Scripts/activate # (1)!
29
+ ```
30
+
31
+ 1. Your terminal should now print `(venv)` before the prompt, which is
32
+ how you know that you are inside an environment.
33
+
34
+ === ":material-linux: Linux, :material-apple: macOS"
35
+
36
+ ``` sh
37
+ . venv/bin/activate # (1)!
38
+ ```
28
39
29
- 1. Your terminal should now print `(venv)` before the prompt, which is
30
- how you know that you are inside an environment.
40
+ 1. Your terminal should now print `(venv)` before the prompt, which is
41
+ how you know that you are inside an environment.
31
42
32
43
- Exit the environment with:
33
44
You can’t perform that action at this time.
0 commit comments