From 8b5e30d8cf3516471dc7a9bb36660a0c56332d2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Tokodi?= Date: Mon, 27 Nov 2023 16:44:30 +0100 Subject: [PATCH] WIP: use pip3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit JerryScript-DCO-1.0-Signed-off-by: Máté Tokodi mate.tokodi@szteszoftver.hu --- targets/os/mbedos/Makefile.travis | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/targets/os/mbedos/Makefile.travis b/targets/os/mbedos/Makefile.travis index b3a02d1c9d..b844a35925 100644 --- a/targets/os/mbedos/Makefile.travis +++ b/targets/os/mbedos/Makefile.travis @@ -26,8 +26,9 @@ install-mbedos: # Deploy Mbed and install Mbed Python dependencies. install-mbedos-deps: - pip install mbed-cli - pip install -r ../mbed-os/requirements.txt + pip3 install --upgrade pip + pip3 install mbed-cli + pip3 install -r ../mbed-os/requirements.txt install: install-mbedos install-mbedos-deps