Skip to content

Instantly share code, notes, and snippets.

@TheSkorm
Created July 15, 2023 05:11
Show Gist options
  • Save TheSkorm/bd0e4380c995bb297f3dc0ea7ed34bc1 to your computer and use it in GitHub Desktop.
Save TheSkorm/bd0e4380c995bb297f3dc0ea7ed34bc1 to your computer and use it in GitHub Desktop.
installing horus gui on arch
docker run -it agners/archlinuxarm /bin/bash
pacman -Syu
pacman -S base-devel python3 git cmake qt5-base qt5-tools portaudio
git clone https://github.com/projecthorus/horusdemodlib.git
cd horusdemodlib && mkdir build && cd build
cmake ..
make
sudo make install
cd ../..
git clone https://github.com/projecthorus/horus-gui.git
cd horus-gui
python3 -m venv venv
source venv/bin/activate
pip install pip -U
MAKEFLAGS="-j$(nproc)" pip3 install PyQt5 --config-settings --confirm-license= --verbose
pip install -r requirements.txt
python3 horus-gui.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment