From 8e95109995dd62ae5584060cc87cd8e02d7b980e Mon Sep 17 00:00:00 2001 From: Ayo Date: Sat, 6 Jun 2026 17:00:02 +0200 Subject: [PATCH] chore: update python env instructions --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3ce823e..adf086e 100644 --- a/README.md +++ b/README.md @@ -44,11 +44,11 @@ See it [in action](https://ayco.io/threads). # create app config from example $ cp example_config.json config.json - # create python environment: - $ python3 -m venv .venv + # create python environment. I prefer conda + $ conda create -n threads python=3.12 # activate python env: - $ . .venv/bin/activate + $ conda activate threads # install dependencies (.venv)$ python -m pip install -r requirements.txt @@ -69,7 +69,7 @@ See it [in action](https://ayco.io/threads). 4. After development session, deactivate the python env ```bash - (.venv)$ deactivate + (.venv)$ conda deactivate ``` ## Deployment