| Feb | MAR | Apr |
| 02 | ||
| 2020 | 2021 | 2022 |
COLLECTED BY
Collection: Common Crawl
●Python »
Python Developer's Guide »
$ git clone https://github.com/<your_username>/devguide
For your PR to be accepted, you will also need to sign the
contributor agreement.
To build the devguide, some additional dependencies are required (most
importantly, Sphinx), and the standard way to install dependencies in
Python projects is to create a virtualenv, and then install dependencies from
a requirements.txt file. For your convenience, this is all automated for
you. To build the devguide on a Unix-like system use:
$ make html
in the checkout directory. On Windows use:
> .\make html
You will find the generated files in _build/html. Note that make check
runs automatically when you submit a pull request. You may
wish to run make check and make linkcheck to make sure that it runs
without errors.
●Python »
Python Developer's Guide »