From 5da4a47bdf6c805ed865c5830e8b8669d132dcb8 Mon Sep 17 00:00:00 2001 From: Dedik Serhii Date: Mon, 15 Mar 2021 13:22:34 +0200 Subject: [PATCH] Update debian_ubuntu.md (#4907) * 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. * Update debian_ubuntu.md Co-authored-by: Me No Dev --- docs/arduino-ide/debian_ubuntu.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/arduino-ide/debian_ubuntu.md b/docs/arduino-ide/debian_ubuntu.md index 79149673..d00a4b0d 100644 --- a/docs/arduino-ide/debian_ubuntu.md +++ b/docs/arduino-ide/debian_ubuntu.md @@ -8,8 +8,8 @@ Installation instructions for Debian / Ubuntu OS sudo usermod -a -G dialout $USER && \ sudo apt-get install git && \ wget https://bootstrap.pypa.io/get-pip.py && \ - sudo python get-pip.py && \ - sudo pip install pyserial && \ + 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 && \