-
Notifications
You must be signed in to change notification settings - Fork 1
Installing ScummPy
Because ScummPy is python based it's very cross-platform, but it does not yet "act like a Python Library" in a lot of ways. ScummPy requires both Python and PyGame to run.
In Windows: Get Python and PyGame working, then download the code and run demogame.py to test the library. (This section needs work, but I'm not much of a Windows user...)
In Ubuntu: PyGame isn't installed by default on Ubuntu, so you'll need to install that, then git, then download ScummPy:
sudo apt-get install python-pygame
sudo apt-get install git-core
git clone https://github.com/MaskedRetriever/ScummPy
Then test with:
cd ScummPy
python demogame.py
Raspberry Pi: Installation on the Raspberry Pi is identical to installation with Ubuntu, except you don't have to install PyGame because it's a default package in Raspian. (It won't hurt anything if you just follow the Ubuntu commands exactly, apt-get will just ignore packages you already have.)