Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.17 KB

README.md

File metadata and controls

43 lines (32 loc) · 1.17 KB

Contributors Stargazers Issues

Nova

Installation

Method 1 - uv (Recommended)

Install the package manager uv using pip install uv. Then run the following command to start the program:

uv run index.py

To manually start the virtual environment and install packages, run

uv venv
uv sync

Method 2 - pip

Setup the virtual environment and install the required dependencies with the following commands:

python -m venv venv
venv\scripts\activate
pip install -r requirements.txt

Then run the following command to start the program:

python index.py