Total Pageviews

Monday 6 February 2012

本地安装django 离线文档

在本地安装django 的教程,根据这里的介绍:    where to get django documentation   ,第一步先从Subversion 仓库check out:
svn co http://code.djangoproject.com/svn/django/trunk/docs/ django_docs
svn下来的是txt格式的文档。安装Sphinx转换成html格式,方便查看和翻译:
sudo easy_install Sphinx
cd ‘/home/harry/Documents/django_docs’
make html
提示:
sphinx-build -b djangohtml -d _build/doctrees . _build/html
make: sphinx-build: Command not found
make: *** [html] Error 127
运行 sphinx-build,Ubuntu 很聪明,提示安装:
sudo apt-get install python-sphinx
再执行make html。
用chrome 等浏览器打开: file:///home/harry/Documents/django_docs/_build/html/index.html
Django v1.3 documentation

No comments:

Post a Comment