cd path/to/your/project# Use Python 3
python3 -m venv venv
# Or use Python 3.12
python3.12 -m venv venvOn Windows:
venv\Scripts\activateOn macOS/Linux:
source venv/bin/activatepip install --upgrade pip
pip install -r requirements.txtpython App.pyOpen your browser and go to:
http://127.0.0.1:7860
python --versionIf it shows 3.14, try to use python3.12 or python3.11 instead.
python3 App.py # instead of python App.py- First run will be slow - the app downloads:
- TinyLlama model (~2.2GB)
- EasyOCR models for Swedish and English (~200MB total)
- GPU recommended for faster performance
- Memory requirements: At least 4-6GB free RAM