Jean-Paul Calderone | 92bc1cb | 2014-01-01 09:22:06 -0500 | [diff] [blame^] | 1 | Installation |
2 | ------------ | ||||
3 | pyOpenSSL uses distutils. Use setup.py to install it in the usual way: | ||||
Jean-Paul Calderone | 897bc25 | 2008-02-18 20:50:23 -0500 | [diff] [blame] | 4 | |
Jean-Paul Calderone | 92bc1cb | 2014-01-01 09:22:06 -0500 | [diff] [blame^] | 5 | $ python setup.py install --user |
Jean-Paul Calderone | 897bc25 | 2008-02-18 20:50:23 -0500 | [diff] [blame] | 6 | |
Jean-Paul Calderone | 92bc1cb | 2014-01-01 09:22:06 -0500 | [diff] [blame^] | 7 | Or use pip: |
Jean-Paul Calderone | 897bc25 | 2008-02-18 20:50:23 -0500 | [diff] [blame] | 8 | |
Jean-Paul Calderone | 92bc1cb | 2014-01-01 09:22:06 -0500 | [diff] [blame^] | 9 | $ pip install --user . |
Jean-Paul Calderone | 897bc25 | 2008-02-18 20:50:23 -0500 | [diff] [blame] | 10 | |
11 | You can, of course, do | ||||
12 | |||||
Jean-Paul Calderone | baba569 | 2009-07-21 12:08:47 -0400 | [diff] [blame] | 13 | $ python setup.py --help |
Jean-Paul Calderone | 897bc25 | 2008-02-18 20:50:23 -0500 | [diff] [blame] | 14 | |
Jean-Paul Calderone | 92bc1cb | 2014-01-01 09:22:06 -0500 | [diff] [blame^] | 15 | or |
Jean-Paul Calderone | 897bc25 | 2008-02-18 20:50:23 -0500 | [diff] [blame] | 16 | |
Jean-Paul Calderone | 92bc1cb | 2014-01-01 09:22:06 -0500 | [diff] [blame^] | 17 | $ pip install --help |
Jean-Paul Calderone | 897bc25 | 2008-02-18 20:50:23 -0500 | [diff] [blame] | 18 | |
Jean-Paul Calderone | 92bc1cb | 2014-01-01 09:22:06 -0500 | [diff] [blame^] | 19 | to find out more about how to use these tools. |
Jean-Paul Calderone | 897bc25 | 2008-02-18 20:50:23 -0500 | [diff] [blame] | 20 | |
Jean-Paul Calderone | 92bc1cb | 2014-01-01 09:22:06 -0500 | [diff] [blame^] | 21 | Documentation |
22 | ------------- | ||||
Jean-Paul Calderone | 897bc25 | 2008-02-18 20:50:23 -0500 | [diff] [blame] | 23 | |
Jean-Paul Calderone | 92bc1cb | 2014-01-01 09:22:06 -0500 | [diff] [blame^] | 24 | The documentation is written in reStructuredText and build using Sphinx. |
Jean-Paul Calderone | 897bc25 | 2008-02-18 20:50:23 -0500 | [diff] [blame] | 25 | |
26 | To build the text, html, postscript or dvi forms of the documentation, this is | ||||
27 | what you do: | ||||
28 | |||||
29 | cd doc | ||||
30 | # To make the text-only documentation: | ||||
31 | make text | ||||
32 | # To make the dvi form: | ||||
33 | make dvi |