Note about activating virtualenv in Bash on Windows

This commit is contained in:
Isaiah Odhner 2024-02-01 18:00:00 -05:00
parent 0baed2d819
commit 3154ba45a3

View File

@ -281,10 +281,12 @@ First, create a virtual environment, and activate it:
```bash
python -m venv .venv
# The activate script is in different places on different systems:
# Linux/macOS:
# Linux/macOS/WSL:
source .venv/bin/activate
# Windows:
# Windows (cmd.exe or PowerShell):
.venv\Scripts\activate
# Git Bash on Windows:
source .venv/Scripts/activate
```
Install Textual and other dependencies: