Django local documentation

I tried to configure django. I have Django-1.1-alpha-1. I tried to make documentation that is in Django-1.1-alpha-1 / doc using the make utility.

But I get an error

  > C: \ django \ Django-1.1-alpha-1 \ docs> C: \ cygwin \ bin \ make.exe html

mkdir -p _build / html _build / doctrees sphinx-build -b html -d _build / doctrees. _build / html make: sphinx-build: Command not found make: *** [html] Error 127

Does anyone know how to solve this problem and make html documentation

Thanks J

+6
python django python-sphinx
source share
1 answer

Install sphinx .

$ easy_install -U Sphinx 
+8
source share

All Articles