Compare commits

..

3 Commits

Author SHA1 Message Date
Uma Maheshwar Reddy Thipparthi f8a64ad258
Merge 0cc4a2216f into 532e7c05ee 2025-05-03 10:16:15 +08:00
Kenneth Estanislao 532e7c05ee
Merge pull request #1155 from killerlux/patch-1
Added commands for linux
2025-05-03 10:16:02 +08:00
killerlux 84836932e6
Added cmomands for linux 2025-04-30 23:09:12 +02:00
1 changed files with 8 additions and 0 deletions

View File

@ -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:**