Follow these steps to deploy the workflow:
-
Clone the source code from GitHub:
git clone https://github.com/mail2mhossain/csv_data_analysis.git cd csv_data_analysis
-
Create a Conda environment (Assuming Anaconda is installed)::
conda create -n csv_analysis_env python=3.11
-
Activate the environment:
conda activate csv_analysis_env
-
Install the required packages:
pip install -r requirements.txt
-
Run the app:
streamlit run app.py
To remove the environment when done:
conda remove --name csv_analysis_env --all