I've been following the Python3 guide on roguebasin (http://www.roguebasin.com/index.php?title=Complete_Roguelike_Tutorial,_using_python3%2Blibtcod,_part_0) and have gotten stuck during the libtcod installation. I've followed the guide completely and when it comes to the validating libtcod installation, when running the command
python -c "import libtcod"
I get:
(venv:libtcod-build|2.7.13) bash-3.2$ python -c "import libtcod"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named libtcod
I'm not sure what I'm doing wrong, or if I've missed any steps. Any ideas on how I can validate that libtcod is installed so I can move on to the next steps of this guide?
Thanks
EDIT Added in link of the guide I am following