mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
f5f0648608
Current method assumes that you are in the esp-idf directory when executing install. This method will get the correct path regardless of where you execute from. Merges https://github.com/espressif/esp-idf/pull/6718
20 lines
463 B
Fish
Executable File
20 lines
463 B
Fish
Executable File
#!/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 "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 ""
|