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 <me-no-dev@users.noreply.github.com>
This commit is contained in:
Dedik Serhii 2021-03-15 13:22:34 +02:00 committed by GitHub
parent 3253de8792
commit 5da4a47bdf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,8 +8,8 @@ Installation instructions for Debian / Ubuntu OS
sudo usermod -a -G dialout $USER && \ sudo usermod -a -G dialout $USER && \
sudo apt-get install git && \ sudo apt-get install git && \
wget https://bootstrap.pypa.io/get-pip.py && \ wget https://bootstrap.pypa.io/get-pip.py && \
sudo python get-pip.py && \ sudo python3 get-pip.py && \
sudo pip install pyserial && \ sudo pip3 install pyserial && \
mkdir -p ~/Arduino/hardware/espressif && \ mkdir -p ~/Arduino/hardware/espressif && \
cd ~/Arduino/hardware/espressif && \ cd ~/Arduino/hardware/espressif && \
git clone https://github.com/espressif/arduino-esp32.git esp32 && \ git clone https://github.com/espressif/arduino-esp32.git esp32 && \