Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

arch.sh: switch permissions of pip install (again) #13179

Merged
merged 1 commit into from
Oct 14, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
MaEtUgR marked this conversation as resolved.
Show resolved Hide resolved

# 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