Skip to content

Commit

Permalink
Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed Apr 7, 2023
1 parent eb901a6 commit 511eac7
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions docs/guides/creating-a-reproduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,27 @@ just delete and recreate the environment. It's trivial to set up:
- Activate the environment with:
=== ":fontawesome-brands-windows: Windows"
=== ":material-apple: macOS"
``` sh
. venv/Scripts/activate # (1)!
. venv/bin/activate
```
1. Your terminal should now print `(venv)` before the prompt, which is
how you know that you are inside an environment.
=== ":fontawesome-brands-windows: Windows"
``` sh
. venv/Scripts/activate
```
=== ":material-linux: Linux, :material-apple: macOS"
=== ":material-linux: Linux"
``` sh
. venv/bin/activate # (1)!
. venv/bin/activate
```
1. Your terminal should now print `(venv)` before the prompt, which is
how you know that you are inside an environment.
Your terminal should now print `(venv)` before the prompt, which is how you
know that you are inside the virtual environment that you just created.
- Exit the environment with:
Expand Down

0 comments on commit 511eac7

Please sign in to comment.