Main repository for my teams Capstone Project, in collaboration with Western Digital
to package the project into a executable:
- clone the repository
cdinto the repo- create a virtual environment
python -m venv .venv- enter the virtual environment
source .venv/bin/activate- install the projects requirements
pip install -r requirements.txt- install the packaging requirements (pyinstaller)
pip install -r requirements.packaging.txt- run pyinstaller
pyinstaller --name=AdvancedImageAnalysis --console --onefile --noconfirm src/main.py