[Tutor] python 3.4 documentation

Peter Otten __peter__ at web.de
Sun Jun 14 21:39:27 CEST 2015


Alex Kleider wrote:

> I'm using python 3.4 on an ubuntu 14.4 LTS OS and frequently find myself
> 'off line'.
> I'd like to download the standard library documentation to have at hand
> on my hard drive.
> I tried
> prompt> wget -r https://docs.python.org/3/library/index.html
> but links appear to be broken.
> I'd be grateful for advice as to the way to do this.
> Thanks in advance.


Go here

https://docs.python.org/3/download.html 

and download an archived version with e. g.

$ wget https://docs.python.org/3/archives/python-3.4.3-docs-html.tar.bz2

or use

$ sudo apt-get install python3-doc

to install the documentation that comes with Ubuntu.



More information about the Tutor mailing list