1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
if [[ `uname -s` == "Darwin" ]]; then export CFLAGS="-I/opt/X11/include" export LDFLAGS="-L/opt/X11/lib" fi if [[ $PY3K > 0 ]]; then set +e echo Running 2to3... 2to3 -w . &>/dev/null if [[ $? != 0 ]]; then echo "ERROR: 2to3 technically failed!" fi fi $PYTHON setup.py install