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
22 lines
463 B
Bash
Executable File
22 lines
463 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -u
|
|
|
|
export IDF_PATH=$(cd $(dirname $0); pwd)
|
|
|
|
echo "Detecting the Python interpreter"
|
|
. ${IDF_PATH}/tools/detect_python.sh
|
|
|
|
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
|
|
|
|
basedir="$(dirname $0)"
|
|
echo "All done! You can now run:"
|
|
echo ""
|
|
echo " . ${basedir}/export.sh"
|
|
echo ""
|