Skip to content

Development version: install and run

Szymon edited this page Aug 30, 2020 · 7 revisions

Installation guide for: Ubuntu, Mint, Raspbian.

WARNING: Audio is not working on WSL!

Developement version installation guide:

Install

Cpp

  1. sudo apt install g++ gcc cmake

Gstreamer

  1. sudo apt-get install libgstreamer1.0-0 gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav gstreamer1.0-doc gstreamer1.0-tools gstreamer1.0-x gstreamer1.0-alsa gstreamer1.0-gl gstreamer1.0-pulseaudio

Golang

  1. sudo apt install golang

ZMQ

  1. sudo apt install libzmq5 libzmq3-dev
  2. go get github.com/pebbe/zmq4

Run

  • in project directory (where CMakeLists.txt is)
  • mkdir build && cd build - separate folder to build,
  • cmake .. && make - build with cmake (compiling and linking),
  • ./PiRadioApp - run application,
    In current version recompile is needed only when C++ files were changed!