We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cac790 commit 69cee11Copy full SHA for 69cee11
1 file changed
config/freertos/esp32/create.sh
@@ -12,9 +12,13 @@ pushd $FW_TARGETDIR >/dev/null
12
13
echo "Installing ESP-IDF tools"
14
python3 esp-idf/tools/idf_tools.py install
15
-
+
16
echo "Installing ESP-IDF virtualenv"
17
- apt install -y python3-pip
+ dpkg -s python3-pip > /dev/null
18
+ if [[ $? -ne 0 ]]; then
19
+ echo "Error: python3-pip package must be installed before continuing..."
20
+ exit 1
21
+ fi
22
pip3 install virtualenv
23
python3 esp-idf/tools/idf_tools.py install-python-env
24
0 commit comments