Installation

Doorstop requires Python and Git or another version control system.

Once Python is installed on your platform, install Doorstop using pip.

$ pip install doorstop

Installing Pre-releases

By default, pip only installs stable releases of Doorstop from PyPi.

To tell pip to install a pre-release version, use the --pre option:

$ pip install --pre doorstop

Alternatively, add it to your Poetry project:

$ poetry add doorstop

After installation, Doorstop is available on the command-line:

$ doorstop --help

And the package is available under the name 'doorstop':

$ python
>>> import doorstop
>>> doorstop.__version__