From c7ef2f092dec18907c6c65a31357f0b26a010975 Mon Sep 17 00:00:00 2001 From: Foster Irwin Date: Fri, 16 Apr 2021 22:14:31 -0600 Subject: [PATCH] added python & pip instructions to linux --- .../getting_started/flashing_firmware/linux.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/website/docs/getting_started/flashing_firmware/linux.md b/website/docs/getting_started/flashing_firmware/linux.md index 7f3f2288..93b418bb 100644 --- a/website/docs/getting_started/flashing_firmware/linux.md +++ b/website/docs/getting_started/flashing_firmware/linux.md @@ -18,7 +18,22 @@ Download the [latest](https://github.com/meshtastic/meshtastic-device/releases/l ## Command Line Instructions -Requires `Python` and `pip` +:::note +Check if you have `python3` and `pip` installed with the following command +```bash +python3 --version +pip3 --version +``` +If `python3` is not installed, install with +```bash +sudo apt-get update +sudo apt-get install python3.6 +``` +If `pip` is not installed, install with +```bash +sudo apt-get install python3-pip +``` +::: 1. Install `esptool` ```bash