As a middle aged luddite hoping to inspire his son some help would be appreciated. Struggled with lesson one, appeared to run fine on python shell and bukkit but message wouldn't show on Minecraft (I'm using the correct version) aware that something isn't right I pushed on to lesson two; that too failed but I got this message and am wondering if it's highlighting a more fundamental error to my set up:
Original code:
import mcpi.minecraft as minecraft
mc = minecraft.Minecraft.create()
pos = mc.player.getTilePos()
print (pos.x)
print (pos.y)
print (pos.z)
Produced this result in the python shell:
Traceback (most recent call last):
File "C:/Users/mark/Desktop/AdventuresInMinecraft/whereAmI.py.", line 1, in <module>
import mcpi.minecraft as minecraft
ImportError: No module named mcpi.minecraft
Any guidance would be genuinely appreciated....