This commit is contained in:
Robin Davies
2022-05-19 10:05:54 -04:00
3 changed files with 16 additions and 8 deletions
+11 -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
@@ -36,6 +36,12 @@ Clone the rerdavies/pipdal package from github. Use the source control tools fro
cd ~/src # or whereever you keep your source repositories. cd ~/src # or whereever you keep your source repositories.
git clone https://github.com/rerdavies/pipedal.git git clone https://github.com/rerdavies/pipedal.git
In the project root, run the following commands to initialze and update pipedal submodules
cd ~/src/pipedal
git submodule init
git submodule update
Run the following command to install and configure React dependencies. Run the following command to install and configure React dependencies.
cd ~/src/pipedal cd ~/src/pipedal
+2 -2
View File
@@ -231,9 +231,9 @@ GEM
jekyll-seo-tag (~> 2.1) jekyll-seo-tag (~> 2.1)
minitest (5.15.0) minitest (5.15.0)
multipart-post (2.1.1) multipart-post (2.1.1)
nokogiri (1.13.4-aarch64-linux) nokogiri (1.13.6-aarch64-linux)
racc (~> 1.4) racc (~> 1.4)
nokogiri (1.13.4-x86_64-linux) nokogiri (1.13.6-x86_64-linux)
racc (~> 1.4) racc (~> 1.4)
octokit (4.22.0) octokit (4.22.0)
faraday (>= 0.9) faraday (>= 0.9)
+3 -1
View File
@@ -11,8 +11,10 @@ Install the package by running
``` ```
sudo apt update sudo apt update
cd ~/Downloads cd ~/Downloads
sudo apt-get install ./pipedal_0.9.11_arm64.deb sudo dpkg --install pipedal_0.9.11_arm64.deb
``` ```
On Raspberry Pi OS, if you have a graphical desktop installed, you can also install package by double-clicking on the downloaded package in the File Manager.
After installing, follow the instructions in [Configuring PiPedal after Installation](Configuring.md). After installing, follow the instructions in [Configuring PiPedal after Installation](Configuring.md).
-------- --------