I just started using homebrew, having no previous experience with package managers or virtual environments. I want to use PyGame, which only runs on 32-bit python 2.7, but keep the 64-bit version for everything else. How can I install the 32bit in a new virtual environment?
I know that you can force python to run in 32 bit mode through
export VERSIONER_PYTHON_PREFER_32_BIT=yes
but it seems unusable to set it every time i want to switch what Im working on.
On Mac OS X 10.6.8 and Python 2.7.5
Thanks!