Provisioning: Install pip for macOS 10.12

Pip is required to provision python packages.

Change-Id: I73ab7556bb6b9ccc57ef078f422bfbba4bfed6a7
Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
This commit is contained in:
Simo Fält
2017-07-27 09:20:42 +03:00
committed by Simon Hausmann
parent 3690fe06a4
commit 62c6676f87
2 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
#!/usr/bin/env bash
# Will install pip utility for python
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
sudo python get-pip.py
rm get-pip.py

View File

@@ -0,0 +1,4 @@
#!/usr/bin/env bash
BASEDIR=$(dirname "$0")
$BASEDIR/../common/pip.sh