Skip to content

Latest commit

 

History

History
34 lines (20 loc) · 1.08 KB

INSTALL.rst

File metadata and controls

34 lines (20 loc) · 1.08 KB

Installing Twisted

Installation Requirements

To install Twisted, you need:

  • Python 3.6/3.7/3.8/3.9
  • setuptools (installed automatically if you use pip).
  • Zope Interface 4.4.2 or newer. Installing via pip will automatically download a suitable Zope Interface.
  • On Windows pywin32 is required. Build 223 or later is highly recommended for reliable operation.

We also have setuptools extras for automatically installing optional packages used by Twisted.

Installing Twisted

To install the latest version of Twisted using pip:

$ pip install twisted

You can install optional dependencies for specific functionality in Twisted (such as TLS or serial support) by using our setuptools extras (see above).

As an example, to install Twisted with the TLS dependencies, use:

$ pip install twisted[tls]