tingbot / tide-electron

📝   Simple IDE for developing Tingbot apps
Other
22 stars 7 forks source link

macOS Sierra build-python issues. #56

Closed fleeting closed 8 years ago

fleeting commented 8 years ago

Attempting to run this on the latest version of macOS (10.12) and when running npm run build-python it errors out with pygame-1.9.2pre-3-cp27-cp27m-macosx_10_9_x86_64.whl is not a supported wheel on this platform.

joerick commented 8 years ago

I just upgraded yesterday and it's still building okay for me! What version of pip and setuptools have you got installed? Maybe they need an update. I'm on pip 8.1.2 and setuptools 26.0.0.

fleeting commented 8 years ago

Hmmm, I've got pip 8.1.2, setuptools 27.3.0, node 4.5.0, and python 2.7.10. My setuptools was initially really outdated but still fails after bumping it to v27.

joerick commented 8 years ago

Could you run the following command and tell me the output?

python -c "import sys; print 'sys.path', sys.path; import setuptools; print 'setuptools version', setuptools.__version__; from pip.pep425tags import supported_tags; print 'supported_tags', supported_tags"
fleeting commented 8 years ago

Yep, here is the output - https://gist.github.com/fleeting/725961d518f8219c700aaf4adb5b5eea. I'll dig into it a little more since I know it's not macOS Sierra and something with my setup.

joerick commented 8 years ago

Try removing that setuptools egg that's on your path, and the entry in easy_install.pth.

fleeting commented 8 years ago

Success! I did the above and ended up uninstalling setuptools entirely. Reinstalled and got it running. Thanks for the help. Now to wait for my Tingbot to arrive in the mail. :)

fleeting commented 8 years ago

and it arrived today! Now to get coding.