Hello Adam,
So you are running something similar to:
import streamlit as st
import pandas as pd
# Path to the CSV file in DBFS
file_path = '/dbfs/path/to/your/file.csv'
# Read the CSV file
df = pd.read_csv(file_path)
# Display the dataframe in Streamlit
st.write(df)
And it is resulting in this file not found issue?