Compare commits

...

2 commits

Author SHA1 Message Date
Patrick_Pluto
6eb1cba0aa Merge branch 'main' of interstellardevelopment.org:React-Group/interstellar_ai 2024-10-09 13:32:14 +02:00
Patrick_Pluto
6dfd236153 dependencies for electron an python builds 2024-10-09 13:32:08 +02:00
2 changed files with 4 additions and 2 deletions

View file

@ -1,6 +1,6 @@
#!/bin/bash
apt install npm nodejs python3-full -y
apt install npm nodejs python3-full ffmpeg libgtk-3-0 libnotify4 libgconf-2-4 libnss3 libxss1 libasound2 build-essential cmake -y
if ! ollama; then
curl -fsSL https://ollama.com/install.sh | sh
fi

View file

@ -1,8 +1,10 @@
#!/bin/bash
cd py
python api.py &
source venv/bin/activate
python3 api.py &
pid_py=$!
cd ..
npm start &
pid_node=$!