The problem is that the Sphinx theme used by CKAN is not part of the CKAN git repository, it has its own git repository, which is a submodule of the CKAN git repo. Therefore, before you can create documents, you need to check the submodule:
> git submodule init
> git submodule update
> python setup.py build_sphinx
source
share