From 46794aa7b30e03b18e8eff4fb6e16512748da9c2 Mon Sep 17 00:00:00 2001 From: Dedik Serhii Date: Sun, 7 Mar 2021 12:49:07 +0200 Subject: [PATCH 1/2] Update debian_ubuntu.md ERROR: This script does not work on Python 2.7 The minimum supported Python version is 3.6. Please use https://bootstrap.pypa.io/2.7/get-pip.py instead. --- docs/arduino-ide/debian_ubuntu.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/arduino-ide/debian_ubuntu.md b/docs/arduino-ide/debian_ubuntu.md index 79149673677..92d72481997 100644 --- a/docs/arduino-ide/debian_ubuntu.md +++ b/docs/arduino-ide/debian_ubuntu.md @@ -7,7 +7,7 @@ Installation instructions for Debian / Ubuntu OS ```bash sudo usermod -a -G dialout $USER && \ sudo apt-get install git && \ - wget https://bootstrap.pypa.io/get-pip.py && \ + wget https://bootstrap.pypa.io/2.7/get-pip.py && \ sudo python get-pip.py && \ sudo pip install pyserial && \ mkdir -p ~/Arduino/hardware/espressif && \ From b7848a59df0737a371e72847b47dcd315ff9813f Mon Sep 17 00:00:00 2001 From: Me No Dev Date: Wed, 10 Mar 2021 14:07:49 +0200 Subject: [PATCH 2/2] Update debian_ubuntu.md --- docs/arduino-ide/debian_ubuntu.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/arduino-ide/debian_ubuntu.md b/docs/arduino-ide/debian_ubuntu.md index 92d72481997..d00a4b0d253 100644 --- a/docs/arduino-ide/debian_ubuntu.md +++ b/docs/arduino-ide/debian_ubuntu.md @@ -7,9 +7,9 @@ Installation instructions for Debian / Ubuntu OS ```bash sudo usermod -a -G dialout $USER && \ sudo apt-get install git && \ - wget https://bootstrap.pypa.io/2.7/get-pip.py && \ - sudo python get-pip.py && \ - sudo pip install pyserial && \ + wget https://bootstrap.pypa.io/get-pip.py && \ + sudo python3 get-pip.py && \ + sudo pip3 install pyserial && \ mkdir -p ~/Arduino/hardware/espressif && \ cd ~/Arduino/hardware/espressif && \ git clone https://github.com/espressif/arduino-esp32.git esp32 && \