Let’s try the following setup.
- Open powershell and create a temp_streamlit folder from your c drive or any drive.
- cd to temp_streamlit folder and check you python version.
- Create a virtual environment folder called venv with:
python -m venv venv
- Clone the repo of aut ui with:
git clonehttps://github.com/GauriSP10/streamlit_login_auth_ui
- Activate the virtual environment. We will install streamlit and other needed packages.
./venv/scripts/activate
-
Update pip with:
python -m pip install pip -U -
Install streamlit with:
pip install streamlit -
Install the auth ui package with:
pip install streamlit-login-auth-ui -
Install argon with:
pip install argon2-cffi -
cd to the aut ui folder and run the app.
There is app.py understreamlit_login_auth_ui
folder.
You should see something like this.
If you no longer need it, just delete temp_streamlit
folder.