Update BuildPrerequisites.md

This commit is contained in:
Robin Davies
2022-05-18 06:25:40 -04:00
committed by GitHub
parent 0995e0fb16
commit b593db4bb3
+5 -5
View File
@@ -4,7 +4,7 @@ Run the following commands to install build tools required by the PiPedal build.
# install CMake # install CMake
sudo apt update sudo apt update
sudo apt install cmake ninja-build sudo apt install -y cmake ninja-build
The PiPedal build process also requires version 12 or later of `node.js`. Type `node --version` to see if you have a version The PiPedal build process also requires version 12 or later of `node.js`. Type `node --version` to see if you have a version
of `node.js` installed already. Otherwise run the following commands as root to install the v14.x lts version of `node.js`: of `node.js` installed already. Otherwise run the following commands as root to install the v14.x lts version of `node.js`:
@@ -22,10 +22,10 @@ with
Run the following commands to install dependent libraries required by the PiPedal build. Run the following commands to install dependent libraries required by the PiPedal build.
sudo apt update sudo apt update
sudo apt install liblilv-dev libboost-dev jackd2 libjack-jackd2-dev libnl-3-dev libnl-genl-3-dev libsystemd-dev catch sudo apt install -y liblilv-dev libboost-dev jackd2 libjack-jackd2-dev libnl-3-dev libnl-genl-3-dev libsystemd-dev catch
sudo apt install libasound2-dev jackd2 uuid-dev sudo apt install -y libasound2-dev jackd2 uuid-dev
sudo apt install libwebsocketpp-dev authbind sudo apt install -y libwebsocketpp-dev authbind
sudo apt install libavahi-client-dev sudo apt install -y libavahi-client-dev
### Installing Sources ### Installing Sources