You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DevOps-Bash-tools/python_pip_install.sh

69 lines
1.9 KiB
Bash

#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2019-02-15 13:56:24 +0000 (Fri, 15 Feb 2019)
#
# https://github.com/harisekhon/bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/harisekhon
#
# Installs to --user on Mac to avoid System Integrity Protection built in to OS X El Capitan and later
#
# Also detects and sets up OpenSSL and Kerberos library paths on Mac when using HomeBrew
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
echo "Installing Python PyPI Modules"
echo "args: $*"
opts=""
if [ -n "${TRAVIS:-}" ]; then
echo "running in quiet mode"
opts="-q"
fi
SUDO=""
if [ $EUID != 0 ] &&
[ -z "${VIRTUAL_ENV:-}" ] &&
[ -z "${CONDA_DEFAULT_ENV:-}" ]; then
SUDO=sudo
fi
user_opt(){
if [ -n "${VIRTUAL_ENV:-}" ] ||
[ -n "${CONDA_DEFAULT_ENV:-}" ]; then
echo "inside virtualenv, ignoring --user switch which wouldn't work"
else
opts="$opts --user"
SUDO=""
fi
}
export LDFLAGS=""
if [ "$(uname -s)" = "Darwin" ]; then
if command -v brew &>/dev/null; then
# usually /opt/local
brew_prefix="$(brew --prefix)"
export LDFLAGS="${LDFLAGS:-} -I$brew_prefix/opt/openssl/include -L$brew_prefix/opt/openssl/lib"
export LDFLAGS="${LDFLAGS:-} -I$brew_prefix/opt/krb5/include -I $brew_prefix/opt/krb5/include/krb5 -L$brew_prefix/opt/krb5/lib"
export CPPFLAGS="${CPPFLAGS:-} -I$brew_prefix/opt/krb5/include"
fi
# avoids Mac's System Integrity Protection built in to OS X El Capitan and later
user_opt
elif [ -n "${PYTHON_USER_INSTALL:-}" ]; then
user_opt
fi
echo "$SUDO ${PIP:-pip} install $opts $*"
# want splitting of pip opts
# shellcheck disable=SC2086
$SUDO "${PIP:-pip}" install $opts "$@"