1 Star 0 Fork 314

sktfrankie123/esp-idf

forked from 乐鑫开源/esp-idf 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
install.sh 1004 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env bash
set -e
set -u
basedir=$(dirname "$0")
IDF_PATH=$(cd "${basedir}"; pwd -P)
export IDF_PATH
echo "Detecting the Python interpreter"
. "${IDF_PATH}/tools/detect_python.sh"
echo "Checking Python compatibility"
"${ESP_PYTHON}" "${IDF_PATH}/tools/python_version_checker.py"
while getopts ":h" option; do
case $option in
h)
"${ESP_PYTHON}" "${IDF_PATH}/tools/install_util.py" print_help sh
exit;;
\?)
;;
esac
done
TARGETS=$("${ESP_PYTHON}" "${IDF_PATH}/tools/install_util.py" extract targets "$@")
echo "Installing ESP-IDF tools"
"${ESP_PYTHON}" "${IDF_PATH}/tools/idf_tools.py" install --targets="${TARGETS}"
FEATURES=$("${ESP_PYTHON}" "${IDF_PATH}/tools/install_util.py" extract features "$@")
echo "Installing Python environment and packages"
"${ESP_PYTHON}" "${IDF_PATH}/tools/idf_tools.py" install-python-env --features="${FEATURES}"
echo "All done! You can now run:"
echo ""
echo " . ${basedir}/export.sh"
echo ""
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/sktfrankie123/esp-idf.git
git@gitee.com:sktfrankie123/esp-idf.git
sktfrankie123
esp-idf
esp-idf
master

搜索帮助