`pip install poetry` + Relative import fix

pull/3/head
killian 12 months ago
parent 3beba042d4
commit a1382dd739

@ -2,7 +2,7 @@
Responsible for configuring an interpreter, then using main.py to serve it at "/". Responsible for configuring an interpreter, then using main.py to serve it at "/".
""" """
from .main import main from main import main
from interpreter import interpreter from interpreter import interpreter
import os import os
import glob import glob

@ -1,19 +1,13 @@
### Install Chromium if not already installed
if ! command -v chromium-browser &> /dev/null
then
apt-get install chromium-browser
fi
### APP ### APP
# Dynamically get path to chrome executable and use it here open app/index.html
CHROME_PATH=$(which chromium-browser) # ^ This should be to run it in fullscreen / kiosk mode
$CHROME_PATH --kiosk ----app=file:///app/index.html
### Start whisper.cpp and stuff? ### Start whisper.cpp and stuff?
### CORE ### CORE
cd core/ cd core/
pip install poetry
poetry install poetry install
poetry run bash start.sh poetry run bash start.sh

Loading…
Cancel
Save