Upgrade the pip version of Python 3 if needed:
$ python3 -m pip install --upgrade pip
$ python3 -m pip --versionInstall a virtual environment using Python 3 if needed:
$ python3 -m pip install --user virtualenvCreate a virtual environment:
$ python3 -m venv venvActivate the virtual environment:
$ source venv/bin/activateUnder the virtual environment, install StreamSide:
(venv) $ pip install streamsideLaunch the Graph Annotator using the following command (replace AID with your ID):
(venv) $ python -m streamside.annotator -a AID &