2018-06-13 20:12:52 +02:00
|
|
|
#!/usr/bin/env bash
|
2018-06-07 02:58:31 +02:00
|
|
|
|
|
|
|
set -e
|
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
PYTHON=python
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case "$1" in
|
|
|
|
-python)
|
|
|
|
PYTHON=$2
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Usage: Usage: ${0##*/} [-python /path/to/bin/python]"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
cd /tmp
|
|
|
|
|
2021-01-28 03:33:45 +01:00
|
|
|
# Todo: Need to update base image from Debian Stretch for the required Python
|
|
|
|
# 3.6 or later
|
2021-05-26 20:02:47 +02:00
|
|
|
curl -# -LO https://bootstrap.pypa.io/pip/get-pip.py
|
|
|
|
#curl -# -LO https://bootstrap.pypa.io/pip/2.7/get-pip.py
|
2018-06-07 02:58:31 +02:00
|
|
|
${PYTHON} get-pip.py --ignore-installed
|
|
|
|
rm get-pip.py
|
|
|
|
|
2019-02-27 20:26:38 +01:00
|
|
|
${PYTHON} -m pip install --upgrade --ignore-installed setuptools
|
2018-06-07 02:58:31 +02:00
|
|
|
${PYTHON} -m pip install --ignore-installed conan
|