Hey, I am trying to deploy my first little app. In same directory of the app i have a data directory with some csv file. When I click on link I have error :
FileNotFoundError: [Errno 2] No such file or directory: ādata/file.csvā
But in local there are functioning so I donāt understand how can I connect the data to my app
the error are in this part of code:
āā"
Championshipchoice = st.sidebar.selectbox(āwhich Championship do you want ?ā,(āTirs_Bundesliga.csvā,āTirs_PL.csvā,āTirs_liga.csvā,āTirs_SerieA.csvā,āTirs_L1.csvā) )
choice = ādata/ā + Championshipchoice
TableChoice = pd.read_csv(choice)
āā"
So pd.read_csv function donāt find files. I verifying all libraries are in requirements.txt files.