I wanted to share that myself and colleague both using file uploader (Streamlit, version 1.32.2) for local running. It works on my mac and not on his
uploaded_file = st.file_uploader("Choose a file")
# "Process Document" button should be inside the 'with tab3:' context
if st.button("Process Document"):
st.write("Process Document button clicked") # Display in UI
if uploaded_file is not None:
I pulled the error message from his developer consoler on Chrome as attached…