I'm using Aptana Studio with PyDev for my Python development.
When running my python scripts on my Mac, I want to add:
arch -i386
on the front of the python command line so I get:
arch -i386 /Library/Frameworks/Python.framework/Versions/2.7/bin/python
Aptana doesn't seem to let me do this though when setting up a new interpreter. I've also tried:
/usr/bin/arch -i386 /Library/Frameworks/Python.framework/Versions/2.7/bin/python
Does anyone kow how I might do this?
!m!