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

Commit e73b981

Browse files
committed
updating pip invocation to avoid pypa/pip#3826
1 parent 846bee5 commit e73b981

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

doc/ardupilot/readme.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,10 @@ git submodule update --init --recursive
124124
~~~
125125

126126
### Install mavproxy
127+
128+
You will need mavproxy installed from pip on your system.
127129
~~~
128-
sudo pip install --target=/opt/sasc/lib/python/site-packages/ mavproxy --install-option="--install-scripts=/opt/sasc/bin"
130+
sudo pip install mavproxy
129131
~~~
130132

131133
# Run Simulation from binary installation

packaging/build_package.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ git clone https://github.com/tfoote/ardupilot.git -b uctf-dev
3939
echo "Building Ardupilot..."
4040
cd ardupilot
4141
export PATH=${PATH}:${WS}/ardupilot/Tools/autotest
42-
./Tools/scripts/install-prereqs-ubuntu.sh
42+
# ./Tools/scripts/install-prereqs-ubuntu.sh
4343
git submodule update --init --recursive
4444
./waf configure --prefix=${INSTALL}
4545
./waf
4646
./waf install
4747

4848

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

5252

5353
echo "generating control file"

0 commit comments

Comments
 (0)