forked from espressif/esp-idf
Tools: Improve the Python package system
Introduce features into the Python package management system & manage package versions outside of ESP-IDF repo.
This commit is contained in:
11
install.sh
11
install.sh
@@ -10,16 +10,15 @@ export IDF_PATH
|
||||
echo "Detecting the Python interpreter"
|
||||
. "${IDF_PATH}/tools/detect_python.sh"
|
||||
|
||||
if [ "$#" -eq 0 ]; then
|
||||
TARGETS="all"
|
||||
else
|
||||
TARGETS=$1
|
||||
fi
|
||||
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
|
||||
"${ESP_PYTHON}" "${IDF_PATH}/tools/idf_tools.py" install-python-env --features=${FEATURES}
|
||||
|
||||
echo "All done! You can now run:"
|
||||
echo ""
|
||||
|
Reference in New Issue
Block a user