From e4ac57504d3f18fabf3231ef30db54da6fef602a Mon Sep 17 00:00:00 2001 From: Matthias Grob Date: Mon, 14 Oct 2019 11:23:01 +0200 Subject: [PATCH] arch.sh: switch permissions of pip install (again) after testing the right solution on a fresh installation --- Tools/setup/arch.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Tools/setup/arch.sh b/Tools/setup/arch.sh index c36280e81d4f..3550174326d6 100644 --- a/Tools/setup/arch.sh +++ b/Tools/setup/arch.sh @@ -69,9 +69,7 @@ sudo pacman -Sy --noconfirm --needed \ # Python dependencies echo "Installing PX4 Python3 dependencies" -pip install --upgrade pip setuptools wheel -pip install -r ${DIR}/requirements.txt - +pip install --user -r ${DIR}/requirements.txt # NuttX toolchain (arm-none-eabi-gcc) if [[ $INSTALL_NUTTX == "true" ]]; then @@ -83,10 +81,10 @@ if [[ $INSTALL_NUTTX == "true" ]]; then vim \ ; - # add user to dialout group (serial port access) + # add user to uucp group (to get serial port access) sudo usermod -aG uucp $USER - # remove modem manager (interferes with PX4 serial port/USB serial usage). + # remove modem manager (interferes with PX4 serial port usage) sudo pacman -R modemmanager --noconfirm # arm-none-eabi-gcc