Source: https://foxhop.net/f3c93c4a-2f95-11f1-aa9b-e86a64d24d78/writing-games-with-python
Snapshot: 2026-05-25T01:38:36Z
Generator: Remarkbox 1527ef7

This is a thread snapshot. The living document lives at the source URI above — it may have been edited, extended, or replied-to since.

Scan for living source

Writing games with python

This page might start out a bit rough but here goes

Setup environment on Fedora

install python headers:

sudo yum install python-devel

install pySFML1.6:

wget http://downloads.sourceforge.net/project/sfml/sfml/1.6/SFML-1.6-python-sdk.zip
unzip SFML-1.6-python-sdk.zip
cd SFML-1.6
python setup.py install

install box2d:

sudo yum install swig
sudo pip install box2d

install pygame:

test env:

>>> import PySFML
>>> import Box2D
>>> help( PySFML )
>>> help( Box2D )

Source: https://foxhop.net/f3c93c4a-2f95-11f1-aa9b-e86a64d24d78/writing-games-with-python
Snapshot: 2026-05-25T01:38:36Z
Generator: Remarkbox 1527ef7