Cura/scripts/osx64/skeinpypy.sh
Bill Bumgarner 6e01b9cd3d - build.sh now copies just the startup scripts, and not any editor turds.
- startup scripts on Mac OS X are marked executable

- startup scripts now make sure that PyOpenGL is installed
2012-03-13 04:19:01 +08:00

27 lines
521 B
Bash
Executable File

#!/bin/bash
python2.7 -c 'import OpenGL'
if [ $? != 0 ]; then
echo "Requires PyOpenGL"
echo " sudo easy_install-2.7 PyOpenGL"
exit 1
fi
python2.7 -c 'import wx'
if [ $? != 0 ]; then
echo "Requires wx. Download and install (the Cocoa/64-bit variant) from:"
echo " http://www.wxpython.org/download.php"
exit 1
fi
python2.7 -c 'import serial'
if [ $? != 0 ]; then
echo "Requires pyserial."
echo " sudo easy_install-2.7 pyserial"
exit 1
fi
SCRIPT_DIR=`dirname $0`
python2.7 ${SCRIPT_DIR}/SkeinPyPy/skeinpypy.py