Skip to content

Commit 1eeaf08

Browse files
committed
Add python-pip to install-dev-dependencies.
Also add paranoia flags to pip command in case pip <1.5 is in use.
1 parent ab6212e commit 1eeaf08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install-dev-dependencies.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
set -o errexit -o xtrace
55
if type apt-get >/dev/null ; then
66
sudo apt-get install libxml2-dev libxml2-utils libxslt1-dev python-dev \
7-
firefox chromium-browser zip sqlite3
7+
firefox chromium-browser zip sqlite3 python-pip
88
elif type brew >/dev/null ; then
99
brew install python libxml2 gnu-sed
1010
if ! echo $PATH | grep -ql /usr/local/bin ; then
1111
echo '/usr/local/bin not found in $PATH, please add it.'
1212
fi
1313
fi
14-
pip install --user -r requirements.txt
14+
pip install --user --no-allow-insecure --no-allow-external -r requirements.txt
1515
# Get the addon SDK submodule
1616
git submodule init
1717
git submodule update

0 commit comments

Comments
 (0)