i am trying to run a streamlit app but once i try to run the app it stuck on the please wait...
python version = 3.10.4
streamlit version = 1.12.0
code:
import streamlit as st
import pandas as pd
import numpy as np
st.title('Uber pickups in NYC')
json file configuration:
{
"version": "0.2.0",
"configurations": [
{
"name":"Python:Streamlit",
"type":"python",
"request": "launch",
"module": "streamlit",
"args": [
"run",
"${file}",
"--server.port",
"5677"
]
}
]
}
what am i doing wrong and how to make it work.