powerline/tests/install.sh

29 lines
813 B
Bash
Executable File

#!/bin/sh
pip install .
pip install psutil netifaces
if python -c 'import sys; sys.exit(1 * (sys.version_info[0] != 2))' ; then
# Python 2
if python -c 'import platform, sys; sys.exit(1 - (platform.python_implementation() == "CPython"))' ; then
# CPython
pip install mercurial
pip install --allow-external bzr --allow-unverified bzr bzr
fi
if python -c 'import sys; sys.exit(1 * (sys.version_info[1] >= 7))' ; then
# Python 2.6
pip install unittest2 argparse
else
# Python 2.7
pip install ipython
fi
else
# Python 3
if python -c 'import sys; sys.exit(1 * (sys.version_info < (3, 3)))' ; then
# Python 3.3+
pip install ipython
fi
fi
sudo apt-get install -qq screen zsh tcsh mksh busybox socat
# Travis has too outdated fish. It cannot be used for tests.
# sudo apt-get install fish
true