1 Star 0 Fork 313

bakecool/esp-idf

forked from 乐鑫开源/esp-idf 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
install.fish 971 Bytes
一键复制 编辑 原始数据 按行查看 历史
radim.karnis 提交于 2023-04-27 14:50 . feat: Install script help
#!/usr/bin/env fish
set basedir (realpath (dirname (status -f)))
set -x IDF_PATH $basedir
echo "Detecting the Python interpreter"
source "$IDF_PATH"/tools/detect_python.fish
echo "Checking Python compatibility"
"$ESP_PYTHON" "$IDF_PATH"/tools/python_version_checker.py
for option in $argv
switch "$option"
case -h --help
"$ESP_PYTHON" "$IDF_PATH"/tools/install_util.py print_help fish
exit
end
end
set TARGETS ("$ESP_PYTHON" "$IDF_PATH"/tools/install_util.py extract targets $argv) || exit 1
echo "Installing ESP-IDF tools"
"$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install --targets=$TARGETS
or exit 1
set FEATURES ("$ESP_PYTHON" "$IDF_PATH"/tools/install_util.py extract features $argv) || exit 1
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.fish"
echo ""
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/bakecool/esp-idf.git
[email protected]:bakecool/esp-idf.git
bakecool
esp-idf
esp-idf
master

搜索帮助