Notes for installing the cocos2d game framework in Python, from the ground up.
This is a very low level, ground-up list of steps. Skip some if you've already gotten some of these out of the way before.
brew install python
pip install cocos2d
Install was surprisingly simple (no need to get OpenGL dependencies? I did have Xcode installed, though).
Works in Python 3! OS X instructions:
brew install python3
mkdir ~/.venv
pyvenv ~/.venv/sandbox
pip install cocos2d
0.0030s
.