windows-setup.rst 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. ***********************************************
  2. Standard Setup of Toolchain for Windows
  3. ***********************************************
  4. :link_to_translation:`zh_CN:[中文]`
  5. .. note::
  6. Currently only 64-bit versions of Windows are supported. 32-bit Windows can use the :doc:`Legacy GNU Make Build System<../get-started-legacy/windows-setup>`.
  7. Introduction
  8. ============
  9. ESP-IDF requires some prerequisite tools to be installed so you can build firmware for the ESP32. The prerequisite tools include Python, Git, cross-compilers, menuconfig tool, CMake and Ninja build tools.
  10. For this Getting Started we're going to use the Command Prompt, but after ESP-IDF is installed you can use :doc:`Eclipse <eclipse-setup>` or another graphical IDE with CMake support instead.
  11. .. note::
  12. Previous versions of ESP-IDF used the :doc:`Legacy GNU Make Build System<../get-started-legacy/windows-setup>` and MSYS2_ Unix compatibility environment. This is no longer required, ESP-IDF can be used from the Windows Command Prompt.
  13. .. _get-started-windows-tools-installer:
  14. ESP-IDF Tools Installer
  15. =======================
  16. The easiest way to install ESP-IDF's prerequisites is to download the ESP-IDF Tools installer from this URL:
  17. https://dl.espressif.com/dl/esp-idf-tools-setup-2.1.exe
  18. The installer includes the cross-compilers, OpenOCD, cmake_ and Ninja_ build tool, and a configuration tool called mconf-idf_. The installer can also download and run installers for Python_ 3.7 and `Git For Windows`_ if they are not already installed on the computer.
  19. The installer also offers to download one of the ESP-IDF release versions.
  20. Using the Command Prompt
  21. ========================
  22. For the remaining Getting Started steps, we're going to use the Windows Command Prompt.
  23. ESP-IDF Tools Installer creates a shortcut in the Start menu to launch the ESP-IDF Command Prompt. This shortcut launches the Command Prompt (cmd.exe) and runs ``export.bat`` script to set up the environment variables (``PATH``, ``IDF_PATH`` and others). Inside this command prompt, all the installed tools are available.
  24. Note that this shortcut is specific to the ESP-IDF directory selected in the ESP-IDF Tools Installer. If you have multiple ESP-IDF directories on the computer (for example, to work with different versions of ESP-IDF), you have two options to use them:
  25. 1. Create a copy of the shortcut created by the ESP-IDF Tools Installer, and change the working directory of the new shortcut to the ESP-IDF directory you wish to use.
  26. 2. Alternatively, run ``cmd.exe``, then change to the ESP-IDF directory you wish to use, and run ``export.bat``. Note that unlike the previous option, this way requires Python and Git to be present in ``PATH``. If you get errors related to Python or Git not being found, use the first option.
  27. Next Steps
  28. ==========
  29. If the ESP-IDF Tools Installer has finished successfully, then the development environment setup is complete. Proceed directly to :ref:`get-started-start-project`.
  30. Related Documents
  31. =================
  32. For advanced users who want to customize the install process:
  33. .. toctree::
  34. :maxdepth: 1
  35. windows-setup-scratch
  36. windows-setup-update
  37. .. _MSYS2: https://msys2.github.io/
  38. .. _cmake: https://cmake.org/download/
  39. .. _ninja: https://ninja-build.org/
  40. .. _Python: https://www.python.org/downloads/windows/
  41. .. _Git for Windows: https://gitforwindows.org/
  42. .. _mconf-idf: https://github.com/espressif/kconfig-frontends/releases/
  43. .. _Github Desktop: https://desktop.github.com/