2019-06-25 01:26:53 +00:00
***** ***** ***** ***** ***** ***** ***** ***** ***** *
Standard Setup of Toolchain for Mac OS
***** ***** ***** ***** ***** ***** ***** ***** ***** *
2019-06-25 01:29:49 +00:00
2018-04-27 06:46:13 +00:00
:link_to_translation:`zh_CN:[中文]`
2017-03-26 22:01:52 +00:00
Install Prerequisites
=====================
2019-06-25 01:29:49 +00:00
ESP-IDF will use the version of Python installed by default on macOS.
2017-03-26 22:01:52 +00:00
- install pip::
sudo easy_install pip
2019-06-25 01:29:49 +00:00
- install pyserial::
2017-03-26 22:01:52 +00:00
2019-06-25 01:29:49 +00:00
pip install --user pyserial
2018-08-29 13:30:03 +00:00
2019-06-25 01:29:49 +00:00
- install CMake & Ninja build:
2017-03-26 22:01:52 +00:00
2019-06-25 01:29:49 +00:00
- If you have HomeBrew_, you can run::
2017-03-26 22:01:52 +00:00
2019-06-25 01:29:49 +00:00
brew install cmake ninja
2017-03-26 22:01:52 +00:00
2019-06-25 01:29:49 +00:00
- If you have MacPorts_, you can run::
2017-03-26 22:01:52 +00:00
2019-06-25 01:29:49 +00:00
sudo port install cmake ninja
2017-03-26 22:01:52 +00:00
2019-06-25 01:29:49 +00:00
- Otherwise, consult the CMake_ and Ninja_ home pages for macOS installation downloads.
2017-03-26 22:01:52 +00:00
2019-06-25 01:29:49 +00:00
- It is strongly recommended to also install ccache_ for faster builds. If you have HomeBrew_, this can be done via `` brew install ccache `` or `` sudo port install ccache `` on MacPorts_.
2017-03-26 22:01:52 +00:00
2019-06-25 01:29:49 +00:00
.. note ::
If an error like this is shown during any step::
2017-03-26 22:01:52 +00:00
2019-06-25 01:29:49 +00:00
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
2017-03-26 22:01:52 +00:00
2019-06-25 01:29:49 +00:00
Then you will need to install the XCode command line tools to continue. You can install these by running `` xcode-select --install `` .
2017-03-26 22:01:52 +00:00
Next Steps
==========
2019-06-25 01:26:53 +00:00
To carry on with development environment setup, proceed to :ref: `get-started-get-esp-idf` .
2017-03-26 22:01:52 +00:00
Related Documents
=================
.. toctree ::
:maxdepth: 1
macos-setup-scratch
2019-06-25 01:29:49 +00:00
.. _cmake: https://cmake.org/
.. _ninja: https://ninja-build.org/
.. _ccache: https://ccache.samba.org/
.. _homebrew: https://brew.sh/
.. _MacPorts: https://www.macports.org/install.php