Executing Python In 64 Bit Mode On Mac Os X 10.10
I'm trying to execute python on 64 bit mode. From this post: How to force using 64 bit python on Mac OS X?, I checked that the python has both 32/64 bit binary. > lipo -info `w
Solution 1:
From Jeff's comment, I installed python from brew
.
> /usr/local/Cellar/python/2.7.9/bin/python -c 'import sys; print sys.maxint'
9223372036854775807
Now, it works fine at least with brew's python.
Post a Comment for "Executing Python In 64 Bit Mode On Mac Os X 10.10"