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