How to build an Avatar maker app | Streamlit #18
[Demo of this web app]().
To recreate this web app on your own computer, do the following.
Firstly, we will create a conda environment called avatar
conda create -n avatar python=3.7.9
Secondly, we will login to the avatar environement
conda activate avatar
Download requirements.txt file
wget https://raw.githubusercontent.com/dataprofessor/avatar-app/main/requirements.txt
Pip install libraries
pip install -r requirements.txt
Install libcairo2
sudo apt-get install libcairo2
streamlit run app.py