- Minimum RAM: 8 GB or higher
- Decent CPU: 10-12 core
- Anaconda: Recommended for managing Python environments
If you haven't already, download and install Anaconda from Anaconda's website.
Open a terminal or Anaconda Prompt and create a new environment named myenv
with Python 3.8:
conda create --name myenv python=3.8
Activate the newly created environment myenv
:
conda activate myenv
Navigate to the directory where you have cloned your project:
cd `C://{your cloned directory}
Install the necessary Python packages listed in requirements.txt:
pip install -r requirements.txt
Run the Streamlit application using the following command:
streamlit run interface.py
This opens app http://localhost:8501/
Read more on Streamlit application Streamlit documentation