3 printf "{{LIBNAME:UC}} Python Library: Installer\n\n"
5 if [ $
(id
-u) -ne 0 ]; then
6 printf "Script must be run as root. Try 'sudo ./install.sh'\n"
12 printf "Installing for Python 2..\n"
13 python setup.py
install
15 if [ -f "/usr/bin/python3" ]; then
16 printf "Installing for Python 3..\n"
17 python3 setup.py
install