aboutsummaryrefslogtreecommitdiffstats
path: root/coin/provisioning/common/macos/pip.sh
blob: b1c9a8641d1fdb059f81a5e29a3b844d9c54a40c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env bash

# shellcheck source=../unix/DownloadURL.sh
source "${BASH_SOURCE%/*}/../unix/DownloadURL.sh"

function InstallPip {

    python=$1

    # Will install pip utility for python
    if [[ $python == "python2.7" ]]; then
        DownloadURL "http://ci-files01-hki.intra.qt.io/input/mac/python27/get-pip.py" "https://bootstrap.pypa.io/2.7/get-pip.py" "c4c5f74586cffe49804f167d95d1710b9750ddf0"
    else
        DownloadURL "http://ci-files01-hki.intra.qt.io/input/mac/get-pip.py" "https://bootstrap.pypa.io/get-pip.py" "209ddf0bb8d1cf06a1f17dd9f21970c76b3d2be2"
    fi
    sudo "$python" get-pip.py
    rm get-pip.py
}