Sentiment analysis is the automated process of understanding the sentiment or opinion of a given text. You can use it to automatically analyze product reviews and sort them by Positive, Neutral, Negative.
https://pip.pypa.io/en/stable/installation/
pip install virtualenv
cd <project dir>
virtualenv .venv
source .venv/bin/activate
$ pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser
cd <project dir>
source .venv/bin/activate
python manage.py runserver
To Stop & deactivate virtualenv
CTRL+C
deactivate