diff options
author | Kali Kaneko <kali@leap.se> | 2015-07-27 21:42:47 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2015-07-27 21:42:47 -0400 |
commit | c5cb769c75c5dc9b3b22b3b3a8102c3244b4edad (patch) | |
tree | 253f4a02acc8e2f9667f413fde96defbec635cc4 /pkg/pip_install_requirements.sh | |
parent | 16242a1ebbac7ee0b38d3199b2a1317297d4506b (diff) |
[pkg] add script to install base requirements
- update pip
- install base reqs, with insecure flags for dirspec. fuck canonical.
Diffstat (limited to 'pkg/pip_install_requirements.sh')
-rwxr-xr-x | pkg/pip_install_requirements.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/pip_install_requirements.sh b/pkg/pip_install_requirements.sh new file mode 100755 index 0000000..8576c8c --- /dev/null +++ b/pkg/pip_install_requirements.sh @@ -0,0 +1,6 @@ +#!/bin/sh +# Update pip and install LEAP base requirements. +# For convenience, u1db and dirspec are allowed with insecure flags enabled. +# Use at your own risk. +pip install -U pip +pip install --allow-external dirspec --allow-unverified dirspec -r pkg/requirements.pip |