在本地安装django 的教程,根据这里的介绍: where to get django documentation ,第一步先从Subversion 仓库check out:
sudo apt-get install python-sphinx
再执行make html。
用chrome 等浏览器打开: file:///home/harry/Documents/django_docs/_build/html/index.html
Django v1.3 documentation
svn co http://code.djangoproject.com/svn/django/trunk/docs/ django_docssvn下来的是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