windows-setup.rst 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. ***********************************************
  2. Standard Setup of Toolchain for Windows
  3. ***********************************************
  4. :link_to_translation:`zh_CN:[中文]`
  5. .. only:: esp32
  6. .. note::
  7. 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>`.
  8. Introduction
  9. ============
  10. ESP-IDF requires some prerequisite tools to be installed so you can build firmware for supported chips. The prerequisite tools include Python, Git, cross-compilers, CMake and Ninja build tools.
  11. 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.
  12. .. only:: esp32
  13. .. note::
  14. 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.
  15. .. note::
  16. Limitation: the installation path of Python or ESP-IDF must not contain white spaces or parentheses.
  17. Limitation: the installation path of Python or ESP-IDF should not contain special characters (non-ASCII) unless the operating system is configured with "Unicode UTF-8" support. System Administrator can enable the support via Control Panel - Change date, time, or number formats - Administrative tab - Change system locale - check the option "Beta: Use Unicode UTF-8 for worldwide language support" - Ok and reboot the computer.
  18. .. _get-started-windows-tools-installer:
  19. ESP-IDF Tools Installer
  20. =======================
  21. The easiest way to install ESP-IDF's prerequisites is to download one of ESP-IDF Tools Installers from this URL: https://dl.espressif.com/dl/esp-idf/?idf=4.3
  22. What is the usecase for Online and Offline Installer
  23. ----------------------------------------------------
  24. Online Installer is very small and allows the installation of all available releases of ESP-IDF. The installer will download only necessary dependencies including `Git For Windows`_ during the installation process. The installer stores downloaded files in the cache directory ``%userprofile%\.espressif``
  25. Offline Installer does not require any network connection. The installer contains all required dependencies including `Git For Windows`_ .
  26. Components of the installation
  27. ------------------------------
  28. The installer deploys the following components:
  29. - Embedded Python
  30. - Cross-compilers
  31. - OpenOCD
  32. - CMake_ and Ninja_ build tools
  33. - ESP-IDF
  34. The installer also allows reusing the existing directory with ESP-IDF. The recommended directory is ``%userprofile%\Desktop\esp-idf`` where ``%userprofile%`` is your home directory.
  35. Launching ESP-IDF Environment
  36. -----------------------------
  37. At the end of the installation process you can check out option ``Run ESP-IDF PowerShell Environment`` or ``Run ESP-IDF Command Prompt (cmd.exe)``. The installer will launch ESP-IDF environment in selected prompt.
  38. ``Run ESP-IDF PowerShell Environment``:
  39. .. figure:: ../../_static/esp-idf-installer-screenshot-powershell.png
  40. :align: center
  41. :alt: Completing the ESP-IDF Tools Setup Wizard with Run ESP-IDF PowerShell Environment
  42. :figclass: align-center
  43. Completing the ESP-IDF Tools Setup Wizard with Run ESP-IDF PowerShell Environment
  44. .. figure:: ../../_static/esp-idf-installer-powershell.png
  45. :align: center
  46. :alt: ESP-IDF PowerShell
  47. :figclass: align-center
  48. ESP-IDF PowerShell
  49. ``Run ESP-IDF Command Prompt (cmd.exe)``:
  50. .. figure:: ../../_static/esp-idf-installer-screenshot.png
  51. :align: center
  52. :alt: Completing the ESP-IDF Tools Setup Wizard with Run ESP-IDF Command Prompt (cmd.exe)
  53. :figclass: align-center
  54. Completing the ESP-IDF Tools Setup Wizard with Run ESP-IDF Command Prompt (cmd.exe)
  55. .. figure:: ../../_static/esp-idf-installer-command-prompt.png
  56. :align: center
  57. :alt: ESP-IDF Command Prompt
  58. :figclass: align-center
  59. ESP-IDF Command Prompt
  60. Using the Command Prompt
  61. ========================
  62. For the remaining Getting Started steps, we're going to use the Windows Command Prompt.
  63. ESP-IDF Tools Installer also 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.
  64. 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:
  65. 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.
  66. 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.
  67. Next Steps
  68. ==========
  69. If the ESP-IDF Tools Installer has finished successfully, then the development environment setup is complete. Proceed directly to :ref:`get-started-start-project`.
  70. Related Documents
  71. =================
  72. For advanced users who want to customize the install process:
  73. .. toctree::
  74. :maxdepth: 1
  75. windows-setup-update
  76. .. _MSYS2: https://www.msys2.org/
  77. .. _CMake: https://cmake.org/download/
  78. .. _Ninja: https://ninja-build.org/
  79. .. _Python: https://www.python.org/downloads/windows/
  80. .. _Git for Windows: https://gitforwindows.org/
  81. .. _Github Desktop: https://desktop.github.com/