LJ/server/install.sh

52 lines
1.3 KiB
Bash
Raw Normal View History

2020-09-19 12:28:56 +00:00
#!/bin/bash
2023-06-03 12:43:53 +00:00
sudo apt update
2020-09-19 12:28:56 +00:00
sudo apt upgrade
sudo apt install python3-pip
sudo apt install redis-server
2020-09-21 09:06:30 +00:00
# for dedicated computer after fresh linux install. todo : ask if needed.
#sudo apt install git
#sudo apt install syncthing
#sudo apt install htop
#sudo apt install screen
#sudo apt install tmux
#sudo apt install nginx
#sudo apt install supervisor
#sudo apt install ssh
# todo one day : modify correct path in syncthing.conf
#sudo cp syncthing.conf to /etc/supervisor/conf.d/
2020-09-19 12:28:56 +00:00
pip3 install scipy
pip3 install numpy
2023-06-03 12:43:53 +00:00
sudo apt-get install python-scipy
sudo apt install libatlas-base-dev
2020-09-19 12:28:56 +00:00
#pip install pygame==1.9.2
#pip3 install pygame==1.9.2
pip3 install redis
pip3 install pysimpledmx
pip3 install DMXEnttecPro
sudo apt install libasound2-dev
sudo apt install libjack-dev
pip3 install python-rtmidi
pip3 install mido
git clone https://github.com/ptone/pyosc --depth 1 /tmp/pyosc && cd /tmp/pyosc && sudo ./setup.py install
2020-09-29 20:40:10 +00:00
pip3 install tk
2020-09-26 14:47:22 +00:00
cd ../
2020-09-24 00:55:56 +00:00
python3 configure.py
2020-09-21 09:06:30 +00:00
# todo : ask for computer ip and run updateUI.py
2020-09-19 12:28:56 +00:00
cd /tmp
sudo apt install portaudio19-dev
sudo apt install cmake
git clone https://github.com/Ableton/link.git
cd link
git submodule update --init --recursive
mkdir build
cd build
cmake ..
cmake --build .
cd /tmp/
git clone --recursive https://github.com/gonzaloflirt/link-python.git
cd link-python
mkdir build
cd build
cmake ..
cmake --build .