Skip to content
This repository has been archived by the owner on Jan 28, 2021. It is now read-only.

Commit

Permalink
updating pip invocation to avoid pypa/pip#3826
Browse files Browse the repository at this point in the history
  • Loading branch information
tfoote committed Oct 28, 2016
1 parent 846bee5 commit e73b981
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion doc/ardupilot/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,10 @@ git submodule update --init --recursive
~~~

### Install mavproxy

You will need mavproxy installed from pip on your system.
~~~
sudo pip install --target=/opt/sasc/lib/python/site-packages/ mavproxy --install-option="--install-scripts=/opt/sasc/bin"
sudo pip install mavproxy
~~~

# Run Simulation from binary installation
Expand Down
4 changes: 2 additions & 2 deletions packaging/build_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ git clone https://github.com/tfoote/ardupilot.git -b uctf-dev
echo "Building Ardupilot..."
cd ardupilot
export PATH=${PATH}:${WS}/ardupilot/Tools/autotest
./Tools/scripts/install-prereqs-ubuntu.sh
# ./Tools/scripts/install-prereqs-ubuntu.sh
git submodule update --init --recursive
./waf configure --prefix=${INSTALL}
./waf
./waf install


echo "Installing mavproxy"
pip install mavproxy --target=${INSTALL}/lib/python/site-packages/ --install-option="--install-scripts=/opt/sasc/bin"
pip install mavproxy --system --target=${INSTALL}/lib/python/site-packages/ --install-option="--install-scripts=/opt/sasc/bin"


echo "generating control file"
Expand Down

0 comments on commit e73b981

Please sign in to comment.