922 B
922 B
description
| description |
|---|
| How to set up the local development environment using pyenv |
-
Install Python Install a compatible Python version (e.g., 3.11.9):
pyenv install 3.11.9 -
Set Local Version Set the local python version for this project:
pyenv local 3.11.9 -
Check Version Verify the correct version is active:
python --version -
Create Virtual Environment Create a virtual environment to isolate dependencies:
python -m venv .venv -
Activate Environment Activate the virtual environment:
.\.venv\Scripts\activate -
Install Dependencies Install the required packages:
pip install -r requirements.txt -
Run Application Start the server using the run script:
python run.py