Skip to content

Commit

Permalink
Merge pull request #5255 from Commandcracker/patch-1
Browse files Browse the repository at this point in the history
Fixed Windows activation documentation
  • Loading branch information
squidfunk committed Apr 7, 2023
2 parents 1639a0b + 22220c8 commit eb901a6
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions docs/guides/creating-a-reproduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"

``` 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.
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:

Expand Down

0 comments on commit eb901a6

Please sign in to comment.