Skip to content

Commit eb901a6

Browse files
authored
Merge pull request #5255 from Commandcracker/patch-1
Fixed Windows activation documentation
2 parents 1639a0b + 22220c8 commit eb901a6

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

docs/guides/creating-a-reproduction.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,23 @@ just delete and recreate the environment. It's trivial to set up:
2222
2323
- Activate the environment with:
2424
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+
```
2839
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.
3142
3243
- Exit the environment with:
3344

0 commit comments

Comments
 (0)