-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Where is the "png" module? #2
Comments
The links are in the comments of the .py file: requires ImageMagick: http://www.imagemagick.org/and python PNG module: https://pypi.python.org/pypi/pypngI'll add those to the readme. Charles Mangin
|
Oops, missed that in the source O_o I liked the fail-overs you implemented (the try/except/finally's) and that could be extended to this case:
|
I've added these canges so that the script will give better feedback if pypng hasn't been installed. It's in this pull request: DSK-Image.py : Added compatibility with Linux and Windows in addition to OSX. #4 Plus gave it the ability to work under Windows and Linux, woohoo! :) |
This is a cool script, but running it on my Kubuntu Linux machine, I get this:
$ python DSK-Image.py ../Images\ II/Aztec.dsk
Traceback (most recent call last):
File "DSK-Image.py", line 11, in
import png # PNG image library
ImportError: No module named png
I tried to pip install png, but that came up with no matches. Where is this png.py module? Could be included in this project?
The text was updated successfully, but these errors were encountered: