From 511eac7d2e4e35cf3009c441341bc36dd4f8923a Mon Sep 17 00:00:00 2001 From: squidfunk Date: Fri, 7 Apr 2023 18:18:45 +0200 Subject: [PATCH] Documentation --- docs/guides/creating-a-reproduction.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/docs/guides/creating-a-reproduction.md b/docs/guides/creating-a-reproduction.md index 19a342b3e..7aa43d7bd 100644 --- a/docs/guides/creating-a-reproduction.md +++ b/docs/guides/creating-a-reproduction.md @@ -22,23 +22,27 @@ just delete and recreate the environment. It's trivial to set up: - Activate the environment with: + === ":material-apple: macOS" + + ``` sh + . venv/bin/activate + ``` + === ":fontawesome-brands-windows: Windows" ``` sh - . venv/Scripts/activate # (1)! + . venv/Scripts/activate ``` - 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" + === ":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: