From 84836932e64a5b615f9c0c88b8eb0b23d07c45b7 Mon Sep 17 00:00:00 2001 From: killerlux <74460450+killerlux@users.noreply.github.com> Date: Wed, 30 Apr 2025 23:09:12 +0200 Subject: [PATCH] Added cmomands for linux --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index d5ffecb..166a2d1 100644 --- a/README.md +++ b/README.md @@ -133,12 +133,20 @@ Place these files in the "**models**" folder. We highly recommend using a `venv` to avoid issues. + For Windows: ```bash python -m venv venv venv\Scripts\activate pip install -r requirements.txt ``` +For Linux: +```bash +# Ensure you use the installed Python 3.10 +python3 -m venv venv +source venv/bin/activate +pip install -r requirements.txt +``` **For macOS:**