mirror of
https://github.com/migatu/conjurer.git
synced 2026-07-18 15:52:10 +00:00
d914711559
Intermediate commits (oldest → newest): - New files for flask services - Service - Minor fix 2 - Waitress - Linux conf files - Service - Bugfixing - Waitress - Install options - Work on deployment - Bugfixes - Work on deployment - name change and othre bugfixes - Installer - Test
11 lines
524 B
Bash
11 lines
524 B
Bash
#!/bin/bash
|
|
python3 -m venv /home/pi/Conjurer_librarian/env
|
|
cp /home/pi/conjurer/conjurer_librarian/conjurer_librarian.py ./Conjurer_librarian/
|
|
cp /home/pi/conjurer/conjurer_librarian/requirements_librarian.txt ./Conjurer_librarian/
|
|
cd /home/pi/Conjurer_librarian
|
|
source /home/pi/Conjurer_librarian/env/bin/activate
|
|
./env/bin/python3 -m pip install --upgrade pip
|
|
./env/bin/python3 -m pip install -r requirements_librarian.txt
|
|
deactivate
|
|
|
|
cp /home/pi/conjurer/conjurer_librarian/conjurer_librarian.py ./Conjurer_librarian/ |