Installation#

Please follow the steps below for installing stream_topic.

Install from the source:#

pip install git+https://github.com/AnFreTh/STREAM.git

Note: Make sure you in the same directory where setup.py file resides.

Install from PyPI:#

pip install stream_topic

Install the required dependencies:#

Make sure you have installed the required dependencies before running any models from stream_topic. You can install the required dependencies using the following command:

import nltk

nltk.download('punkt')
nltk.download('wordnet')
nltk.download('stopwords')
nltk.download('averaged_perceptron_tagger')