-
-
Notifications
You must be signed in to change notification settings - Fork 2
Installing Development Version on Windows
deucebucket edited this page Jan 12, 2026
·
1 revision
This guide helps you install the development (beta) version of Library Manager on Windows. The develop branch contains the latest fixes and features before they're released to the main branch.
- Git - Download Git for Windows
- Python 3.10+ - Download Python (check "Add to PATH" during install)
Open Command Prompt or PowerShell and run:
git clone https://github.com/deucebucket/library-manager.git
cd library-managergit checkout developpython -m venv venv
venv\Scripts\activatepip install -r requirements.txtpython app.pyOpen your browser to http://localhost:5757
To get the latest development changes:
cd library-manager
git pull origin developIf you have a virtual environment, make sure it's activated first:
venv\Scripts\activate
git pull origin develop
pip install -r requirements.txtTo switch to stable (main):
git checkout main
git pull origin mainTo switch back to development:
git checkout develop
git pull origin develop- Reinstall Python and check "Add Python to PATH"
- Or use the full path:
C:\Users\YourName\AppData\Local\Programs\Python\Python312\python.exe
- Restart your terminal after installing Git
- Or add Git to your PATH manually
- Another app is using the port
- Kill it with Task Manager, or change the port in
app.py
- Try upgrading pip first:
python -m pip install --upgrade pip - If a specific package fails, install it manually
- GitHub Issues - Report bugs or ask questions
- Development discussion happens in issue threads