]> granicus.if.org Git - esp-idf/commitdiff
windows: Update MSYS2 environment, add Python requirements to setup script
authorAngus Gratton <angus@espressif.com>
Mon, 1 Oct 2018 03:58:51 +0000 (13:58 +1000)
committerAngus Gratton <gus@projectgus.com>
Mon, 1 Oct 2018 06:16:49 +0000 (16:16 +1000)
docs/en/get-started/windows-setup.rst
docs/zh_CN/get-started/windows-setup.rst
tools/windows/windows_install_prerequisites.sh

index 9b143920b95ced92c8d0e5c59a6ee8bee698d35a..ad7d821011a08c5e4885f48df4c26208580104c6 100644 (file)
@@ -14,7 +14,7 @@ Toolchain Setup
 
 The quick setup is to download the Windows all-in-one toolchain & MSYS2 zip file from dl.espressif.com:
 
-https://dl.espressif.com/dl/esp32_win32_msys2_environment_and_toolchain-20180110.zip
+https://dl.espressif.com/dl/esp32_win32_msys2_environment_and_toolchain-20181001.zip
 
 Unzip the zip file to ``C:\`` (or some other location, but this guide assumes ``C:\``) and it will create an ``msys32`` directory with a pre-prepared environment.
 
index 25edb9d15d0071bed9fd57644e0c88ddce249291..348f5f6e778980ff1870ae54cbdf0f6aa31c4278 100644 (file)
@@ -15,7 +15,7 @@ Windows 没有内置的 "make" 环境,因此如果要安装工具链,你需
 
 快速设置的方法是从 dl.espressif.com 下载集成在一起的工具链和 MSYS2 压缩文件:
 
-https://dl.espressif.com/dl/esp32_win32_msys2_environment_and_toolchain-20180110.zip
+https://dl.espressif.com/dl/esp32_win32_msys2_environment_and_toolchain-20181001.zip
 
 将 zip 压缩文件解压到 ``C:\`` (或其它路径,这里假设是 ``C:\``),它会使用预先准备的环境创建一个 ``msys32`` 目录。
 
index a08137197f3d880c454ad4e9beb11e35c5e10350..cf1527e1eb9033d434a9468b0f755bda992d239b 100644 (file)
@@ -33,13 +33,13 @@ set -e
 
 pacman --noconfirm -Syu # This step may require the terminal to be closed and restarted
 
-pacman --noconfirm -S --needed gettext-devel gcc git make ncurses-devel flex bison gperf vim mingw-w64-i686-python2-pip unzip winpty
+pacman --noconfirm -S --needed gettext-devel gcc git make ncurses-devel flex bison gperf vim \
+       mingw-w64-i686-python2-pip mingw-w64-i686-python2-cryptography unzip winpty
 
-# Workaround for errors when running "git submodule" commands
-# See https://github.com/Alexpux/MSYS2-packages/issues/735
-rm -f /mingw32/bin/envsubst.exe
-
-python -m pip install --upgrade pip
+# if IDF_PATH is set, install requirements now as well
+if [ -n $IDF_PATH ]; then
+       python -m pip install -r $IDF_PATH/requirements.txt
+fi
 
 # Automatically download precompiled toolchain, unpack at /opt/xtensa-esp32-elf/
 TOOLCHAIN_ZIP=xtensa-esp32-elf-win32-1.22.0-80-g6c4433a-5.2.0.zip