If you won an Astro Pi kit from phase one of the competition then you will have a pre-installed SD card that is now quite out of date (as of August 2015) and it is advised that you update your SD cards to the latest version of Raspbian.
The Astro Pi python module has also been replaced with the Sense HAT one here. It is also advised that people migrate away from the old Astro Pi python module (which will never be updated again) to using this new Sense HAT one (which will).
Install: http://pythonhosted.org/sense-hat/
The module is backwardly compatible with the old Astro Pi python module by way of an alias.
So where you have:
Code: Select all
from astro_pi import AstroPi
ap = AstroPi()Code: Select all
from sense_hat import AstroPi
ap = AstroPi()

