MacOS 平台工具链的标准设置¶
安装准备¶
ESP-IDF 将使用 Mac OS 上默认安装的 Python 版本。
安装 pip:
sudo easy_install pip
安装 pyserial:
pip install --user pyserial
安装 CMake 和 Ninja 编译工具:
强烈建议同时安装 ccache 以获得更快的编译速度。如有 HomeBrew,可通过 MacPorts 上的
brew install ccache
或sudo port install ccache
完成安装。
注解
如您在上述任何步骤中遇到以下错误:
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
则必须安装 XCode 命令行工具,具体可运行 xcode-select –install。
后续步骤¶
继续设置开发环境,请前往 :ref:get-started-get-esp-idf。