./build.sh osx64 - updated to use the latest nightly pypy as it both seems relatively stable and the URL is subject to less rot - updated pronterface.sh to push user to installing Cocoa variant of wxPython and to no longer launch in 32 bit mode
19 lines
394 B
Bash
19 lines
394 B
Bash
#!/bin/bash
|
|
|
|
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}/Printrun/pronterface.py
|
|
|