From 00a546ee06f267e1a48ab9a580bb20c181de93af Mon Sep 17 00:00:00 2001 From: Tanishq Jasoria Date: Tue, 22 Jan 2019 14:58:27 +0530 Subject: [PATCH] python2 get.py does not work behind proxy (#2349) Executing python2 get.py behind proxy give error "IOError: [Errno socket error] [SSL: UNKNOWN_PROTOCOL] unknown protocol (_ssl.c:590)" --- 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 3650448e..79149673 100644 --- a/docs/arduino-ide/debian_ubuntu.md +++ b/docs/arduino-ide/debian_ubuntu.md @@ -16,7 +16,7 @@ Installation instructions for Debian / Ubuntu OS cd esp32 && \ git submodule update --init --recursive && \ cd tools && \ - python2 get.py + python3 get.py ``` - Restart Arduino IDE @@ -32,5 +32,5 @@ Installation instructions for Debian / Ubuntu OS cd esp32 && \ git submodule update --init --recursive && \ cd tools && \ - python2 get.py + python3 get.py ```