On Sun, Nov 10, 2013 at 12:05 AM, voger <[email protected]> wrote:
> The django book was my first contact with django but as the website itself > states it is way out of date (covering django 1.0 and mentioning here and > there 1.4). The same website suggests their github page > > https://github.com/jacobian/djangobook.com > > where the book updates are work in progress attempting to keep it up to > date with more recent versions of Django. The thing is, how do I read this > book? How can I compile the code to produce helpful readable format? I am > using Linux. Hi Voger, The Django Book is written in using Sphinx. Sphinx is a tool you can install from PyPI -- pip install sphinx Once you've got Sphinx installed, you can use "make" to control the build; run make html to make a HTML target; the front page of the book will be put in _build/html/index.html. You can also build epub, texinfo, and a variety of other formats if you need to. Yours, Russ Magee %-) -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAJxq848ppVJWH7WPWrU24Sy8mLAT5tMYR-FHRfrEYrNPB4B7kg%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.

