From 05373282a26a15e29512ed9ae933132ffc9770e8 Mon Sep 17 00:00:00 2001 From: Riccardo Date: Tue, 29 Oct 2019 11:51:37 -0700 Subject: [PATCH] board get_sdk scripts were left on python2 --- board/get_sdk.sh | 2 +- board/get_sdk_mac.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/board/get_sdk.sh b/board/get_sdk.sh index 7b8d1f9154c0ac..3a009a5a13173f 100755 --- a/board/get_sdk.sh +++ b/board/get_sdk.sh @@ -1,3 +1,3 @@ #!/bin/bash sudo apt-get install gcc-arm-none-eabi python-pip -sudo pip2 install libusb1 pycrypto requests +sudo pip install libusb1 pycrypto requests diff --git a/board/get_sdk_mac.sh b/board/get_sdk_mac.sh index a6f641dce12116..5a5ad5b1c0c31b 100755 --- a/board/get_sdk_mac.sh +++ b/board/get_sdk_mac.sh @@ -2,4 +2,4 @@ # Need formula for gcc brew tap ArmMbed/homebrew-formulae brew install python dfu-util arm-none-eabi-gcc -pip2 install libusb1 pycrypto requests +pip install libusb1 pycrypto requests