Revision history [back]
When you cloned the repository you have just copied the software onto your disk, but it has not yet been installed in a way that python does not know about what you've copied.
python setup.py install
or python setup.py develop
do that second part - please read the documentation more carefully.
It's a good idea to use python's virtual environment.