- Create conda environment
conda create -n myenv python=3.8
- Run these commands in terminal
pip install pycaret[full]
pip install streamlit
python -m spacy download en_core_web_sm
python -m textblob.download_corpora
or
- Run these commands in terminal
pip install -r requirements.txt
python -m spacy download en_core_web_sm
python -m textblob.download_corpora
streamlit run main.py