Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 666 Bytes

File metadata and controls

38 lines (26 loc) · 666 Bytes

Getting Started

Upgrade the pip version of Python 3 if needed:

$ python3 -m pip install --upgrade pip
$ python3 -m pip --version

Install a virtual environment using Python 3 if needed:

$ python3 -m pip install --user virtualenv

Create a virtual environment:

$ python3 -m venv venv

Activate the virtual environment:

$ source venv/bin/activate

Under the virtual environment, install StreamSide:

(venv) $ pip install streamside

Launch the Graph Annotator using the following command (replace AID with your ID):

(venv) $ python -m streamside.annotator -a AID &