From e5d0b0c37de1f367988c1f9098ad8070f8808d5c Mon Sep 17 00:00:00 2001 From: Lincoln Stein Date: Thu, 9 Feb 2023 17:56:25 -0500 Subject: [PATCH] Formatting fixes, Manual Installation docs Found a couple of places where the formatting was messed up. This corrects them. --- docs/installation/020_INSTALL_MANUAL.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/installation/020_INSTALL_MANUAL.md b/docs/installation/020_INSTALL_MANUAL.md index 57e508fef9..3e3b8db150 100644 --- a/docs/installation/020_INSTALL_MANUAL.md +++ b/docs/installation/020_INSTALL_MANUAL.md @@ -109,20 +109,20 @@ manager, please follow these steps: === "Windows" ```bash cd $INVOKEAI_ROOT - python -m venv create .venv - ``` + python -m venv create .venv + ``` 4. Activate the new environment: === "Linux/Mac" - ```bash + ```bash source .venv/bin/activate - ``` + ``` === "Windows" - ```bash + ```bash .venv\script\activate - ``` + ``` If you get a permissions error at this point, run the command `Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser` and try `activate` again.