Description
I followed the tutorial here to set this up. I have tried it on 2 different computers, both having identical results. Win7-64bit and win10-64bit. I get the following error on both pc's
IOError: [Errno socket error] [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:661)
Below is the terminal output
Jim@DESKTOP-GSGCS1Q MINGW64 ~
$ mkdir -p ~/Documents/Arduino/hardware/espressif && \
cd ~/Documents/Arduino/hardware/espressif &&
git clone https://github.com/espressif/arduino-esp32.git esp32 &&
cd esp32/tools/ &&
python get.py
Cloning into 'esp32'...
remote: Counting objects: 2068, done.
remote: Total 2068 (delta 0), reused 0 (delta 0), pack-reused 2068
Receiving objects: 100% (2068/2068), 32.07 MiB | 303.00 KiB/s, done.
Resolving deltas: 100% (758/758), done.
Checking out files: 100% (813/813), done.
Platform: i686-mingw32
Downloading xtensa-esp32-elf-win32-1.22.0-59.zip
Traceback (most recent call last):
File "get.py", line 124, in
get_tool(tool)
File "get.py", line 83, in get_tool
urlretrieve(url, local_path, report_progress)
File "C:\Python27\lib\urllib.py", line 98, in urlretrieve
return opener.retrieve(url, filename, reporthook, data)
File "C:\Python27\lib\urllib.py", line 245, in retrieve
fp = self.open(url, data)
File "C:\Python27\lib\urllib.py", line 213, in open
return getattr(self, name)(url)
File "C:\Python27\lib\urllib.py", line 443, in open_https
h.endheaders(data)
File "C:\Python27\lib\httplib.py", line 1038, in endheaders
self._send_output(message_body)
File "C:\Python27\lib\httplib.py", line 882, in _send_output
self.send(msg)
File "C:\Python27\lib\httplib.py", line 844, in send
self.connect()
File "C:\Python27\lib\httplib.py", line 1263, in connect
server_hostname=server_hostname)
File "C:\Python27\lib\ssl.py", line 363, in wrap_socket
_context=self)
File "C:\Python27\lib\ssl.py", line 611, in init
self.do_handshake()
File "C:\Python27\lib\ssl.py", line 840, in do_handshake
self._sslobj.do_handshake()
IOError: [Errno socket error] [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:661)
Jim@DESKTOP-GSGCS1Q MINGW64 ~/Documents/Arduino/hardware/espressif/esp32/tools (master)