LJ/server/install.sh.darwin

65 lines
1.4 KiB
Bash

#!/bin/bash
brew upgrade
brew install python3-pip
brew install git
brew install redis
#brew install htop
#brew install syncthing
#brew install screen
#brew install tmux
#brew install nginx
#brew install supervisor
pip3 install scipy
pip3 install numpy
#pip3 install pygame==1.9.2
# brew install vulkan-headers
pip3 install redis
pip3 install pysimpledmx
pip3 install DMXEnttecPro
brew install libasound2-dev
brew install libjack-dev
pip3 install python-rtmidi
pip3 install mido
#pip3 install tk
cd ../
python3 configure.py
#sudo cp syncthing.conf to /etc/supervisor/conf.d/
git clone https://github.com/ptone/pyosc --depth 1 /tmp/pyosc && cd /tmp/pyosc && sudo ./setup.py install
cd /tmp
brew install portaudio19-dev
brew install cmake
#
# Ableton link
#
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 ..
# After cmake.. to build for non-apple python but brew style python :
#
# change in /tmp/link-python/build/CMakeCache.txt
#//Path to a program.
#PYTHON_EXECUTABLE:FILEPATH=/usr/local/bin/python3
#//Path to a library.
#PYTHON_LIBRARY:FILEPATH=/usr/local/opt/python@3.8/Frameworks/Python.framework/Versions/3.8/lib/libpython3.8.dylib
cmake --build .