Installation

If you’ve done this kind of thing before, suffice to say that Streamly has been published to PyPI and so it is installable under the name, streamly.

Requirements

Streamly requires Python 3.1 or newer. It does not have any 3rd party dependencies.

Installation

It goes without saying that you should not install directly into your system-wide python installation, but instead into a project-specific virtual environment.

It is highly recommended that you use pipenv as it consolidates the installation of your application’s dependencies and virtual environment management into one simple tool.

Otherwise, use pip and venv separately.

With pipenv

This section assumes that pipenv is installed. If not, install it first.

Create and/or Activate Virtual Environment & Install:

pipenv install streamly

OR Activate Virtual Environment & Update:

pipenv update streamly

With pip and venv separately

This section assumes that you have created and/or activated your virtual environment manually. If not, install/create/activate first.

Install Or Update:

pip install streamly --upgrade