- Download the project as a zip and unzip it
- Open the unzipped folder (newly created)
- Open your terminal (command prompt or shell)
- Type in the commands below one by one (Don't include the $ sign)
$ python -m venv venv
$ . venv/Scripts/activate.bat
OR
$ . venv/Scripts/activate
$ python -m pip install -r requirements.txt
activate.bat
for Windows and activate
for Bash
- Open your terminal
- Activate virtual environment using
. venv/Scripts/activate
or. venv/Scripts/activate.bat
(according to your terminal) - Then run
python main.py
to start the app
Your library manager is now ready! For future use, just navigate to the project folder and run the above commands again.