adafruit-beaglebone-io-python/install_all_python_versions.sh
Drew Fustini bf97de641a
update install and test shell scripts
Signed-off-by: Drew Fustini <drew@pdp7.com>
2018-08-31 04:34:38 -05:00

7 lines
185 B
Bash
Executable file

#!/bin/bash
# useful for testing changes against all versions of python
make clean
echo "Install Python 2"
python2 ./setup.py install
echo "Install Python 3"
python3 ./setup.py install