Formatting fixes, Manual Installation docs

Found a couple of places where the formatting was messed up. This corrects them.
This commit is contained in:
Lincoln Stein 2023-02-09 17:56:25 -05:00 committed by GitHub
parent f5d1fbd896
commit e5d0b0c37d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -109,20 +109,20 @@ manager, please follow these steps:
=== "Windows" === "Windows"
```bash ```bash
cd $INVOKEAI_ROOT cd $INVOKEAI_ROOT
python -m venv create .venv python -m venv create .venv
``` ```
4. Activate the new environment: 4. Activate the new environment:
=== "Linux/Mac" === "Linux/Mac"
```bash ```bash
source .venv/bin/activate source .venv/bin/activate
``` ```
=== "Windows" === "Windows"
```bash ```bash
.venv\script\activate .venv\script\activate
``` ```
If you get a permissions error at this point, run the command If you get a permissions error at this point, run the command
`Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser` `Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser`
and try `activate` again. and try `activate` again.