Install Conda using a installer
Set Up Conda using the following command on terminal:
conda init
Create a virtual environment:
conda create --name myenv python=3.8
Activate the virtual Environment:
conda activate myenv
Clone the github repo in the environment:
git clone https://github.com/ahiliitb/algobull_widget.git
Install pip:
conda install pip
Go inside the directory and install requirments.txt
cd algobull_widget
pip install -r requirements.txt
Run the streamlit file
streamlit run scripts/cards.py --server.enableXsrfProtection false