From 53a733ae32ea418420ce23214993670aebd6f83c Mon Sep 17 00:00:00 2001 From: Isaiah Odhner Date: Fri, 16 Jun 2023 18:07:40 -0400 Subject: [PATCH] Suggest installing from requirements.txt I had to blow away my virtual environment, and installing from requirements.txt worked whereas the existing line didn't, I guess due to the fixed version number of textual. I don't know exactly, but it seems pretty silly to try to maintain this list of requirements separately. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f6f4ec..746f1d8 100644 --- a/README.md +++ b/README.md @@ -203,7 +203,7 @@ source .venv/bin/activate Install Textual and other dependencies: ```bash -pip install "textual[dev]" stransi psutil watchdog pyperclip pyright +pip install -r requirements.txt ``` Run via Textual's CLI for live-reloading CSS support, and enable other development features: