Fix pip detection
This commit is contained in:
parent
70017cf7b7
commit
9bae034719
1 changed files with 13 additions and 8 deletions
|
@ -170,16 +170,21 @@ $SUDO npm install -g reveal-md
|
|||
echo "Installing fancy differ"
|
||||
$SUDO npm install -g diff-so-fancy
|
||||
|
||||
pip3_path=`which pip3`
|
||||
if [[ -z $NOPYTHON3 && -x pip3_path ]]; then
|
||||
if [[ -z $NOPYTHON3 ]]; then
|
||||
pip3_path=`which pip3`
|
||||
echo "pip3 path is $pip3_path"
|
||||
if [[ -x pip3_path ]]; then
|
||||
echo "Choosing pip3 for pip"
|
||||
PIP=pip3
|
||||
else
|
||||
else
|
||||
echo "Choosing pip"
|
||||
PIP=pip
|
||||
fi
|
||||
echo "Installing Nikola"
|
||||
$SUDO $PIP install pygments-style-solarized ws4py watchdog webassets Nikola
|
||||
fi
|
||||
fi
|
||||
|
||||
echo "Installing Nikola"
|
||||
$SUDO $PIP install pygments-style-solarized ws4py watchdog webassets Nikola
|
||||
|
||||
if [[ -z $USER ]]; then
|
||||
USER=`whoami`
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue