mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
47f67f8b81
Install and export script should work on systems without "python" executable. Closes https://github.com/espressif/esp-idf/pull/6471 Closes https://github.com/espressif/esp-idf/issues/6532 Related to https://github.com/espressif/esp-idf/issues/6421 and https://github.com/espressif/arduino-esp32/issues/4717
20 lines
435 B
Fish
Executable File
20 lines
435 B
Fish
Executable File
#!/usr/bin/env fish
|
|
|
|
set basedir $PWD
|
|
|
|
set -x IDF_PATH $basedir
|
|
|
|
echo "Detecting the Python interpreter"
|
|
source "$IDF_PATH"/tools/detect_python.fish
|
|
|
|
echo "Installing ESP-IDF tools"
|
|
"$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install
|
|
|
|
echo "Installing Python environment and packages"
|
|
"$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install-python-env
|
|
|
|
echo "All done! You can now run:"
|
|
echo ""
|
|
echo " . "$basedir"/export.fish"
|
|
echo ""
|