I am trying to learn more about displaying graphics with Python 2.7.9 and one post on StackOverflow directed me to wand, but nowhere can I find how to install wand. 'sudo apt-get install wand' fails with 'Unable to locate package wand'.
http://docs.wand-py.org/en/0.4.4/ says to install using '$ sudo apt-get install libmagickwand-dev' but any sample programs end in error with "no module named wand."
What I am trying to do is to flash a number on the console screen that is readable from across the room. I am making an Easter Egg hunt game in Python which is mostly finished, but the numbers on the screen from print ("5") are just too small. My thought was to just use Photoshop to make an image of the number then something like wand to display it instead of printing it to the screen.
So if Wand isn't the correct answer, suggestions would be appreciated. If wand will work for my game display, how do I get it?
Thanks