Skip to the content.

Installation (Python)

Requirements

The Sinbad library is intended for use with Python version 3.5 or later.


Install using either a Python shell or from a terminal console, or if all else fails, manual download and installation.

Python Shell

Type the following from the interactive Python shell (don’t type the >>>s):

>>> import pip
>>> pip.main(['install', 'sinbad'])

Terminal

From a console prompt, type the following:

pip3 install -U sinbad

If pip3 does not work, use pip.

Manual Download and Install


Uninstall

Type pip uninstall sinbad at the terminal prompt, or

>>> import pip
>>> pip.main(['uninstall', 'sinbad'])

in an interactive Python shell.