Use apt-get, not dpkg -i (which doesn't install dependencies)

This commit is contained in:
Robin Davies
2024-08-18 18:42:23 -04:00
parent 076f6daa7e
commit 6358682eb1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ Install the package by running
``` ```
sudo apt update sudo apt update
cd ~/Downloads cd ~/Downloads
sudo dpkg -i pipedal_1.2.37_arm64.deb sudo apt-get install pipedal_1.2.37_arm64.deb
``` ```
Adjust accordingly if you have downloaded v1.1.31. Adjust accordingly if you have downloaded v1.1.31.
+1 -1
View File
@@ -14,7 +14,7 @@ Install the package by running
``` ```
sudo apt update sudo apt update
cd ~/Downloads cd ~/Downloads
sudo dpkg -i ./pipedal_1.2.37_arm64.deb sudo apt-get install ./pipedal_1.2.37_arm64.deb
``` ```
Follow the instructions in [_Configuring PiPedal After Installation_](https://rerdavies.github.io/pipedal/Configuring.html) to complete the installation. Follow the instructions in [_Configuring PiPedal After Installation_](https://rerdavies.github.io/pipedal/Configuring.html) to complete the installation.