Skip to content

Commit

Permalink
Tools: scripts: esp32_get_idf: Use break_system_packages
Browse files Browse the repository at this point in the history
The only way to install the libraries on newer systems is using break-system-packages argument or env variable

Signed-off-by: Patrick José Pereira <[email protected]>
  • Loading branch information
patrickelectric committed Nov 5, 2024
1 parent 7f04c82 commit 94367b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tools/scripts/esp32_get_idf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ git submodule update --init --recursive

echo
echo "installing missing python modules"
python -m pip install empy==3.3.4
python -m pip install pexpect
python -m pip install future
PIP_BREAK_SYSTEM_PACKAGES=1 python -m pip install empy==3.3.4
PIP_BREAK_SYSTEM_PACKAGES=1 python -m pip install pexpect
PIP_BREAK_SYSTEM_PACKAGES=1 python -m pip install future

cd ../..

Expand Down

0 comments on commit 94367b2

Please sign in to comment.