Skip to content

Commit

Permalink
arch.sh: switch permissions of pip install (again)
Browse files Browse the repository at this point in the history
after testing the right solution on a fresh installation
  • Loading branch information
MaEtUgR committed Oct 14, 2019
1 parent c09ea2a commit e4ac575
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions Tools/setup/arch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit e4ac575

Please sign in to comment.