I’m running streamlit 1.24.1 but when using st.data_editor(df) to create editable data frames I’m receiving this error :
AttributeError: module ‘streamlit’ has no attribute ‘data_editor’
any clues on how to resolve this ?
I’m running streamlit 1.24.1 but when using st.data_editor(df) to create editable data frames I’m receiving this error :
AttributeError: module ‘streamlit’ has no attribute ‘data_editor’
any clues on how to resolve this ?
Hi @Salem_M_Adouni,
Thanks for posting!
Try upgrading Streamlit and trying again:
pip install streamlit --upgrade
Let me know if this resolves the issue.
Hi @Salem_M_Adouni and welcome to our forum!
Trying to reinstall Streamlit as @tonykip is suggesting is a good thing to try.
In case that doesn’t work, I haven’t seen your code, but this is how data_editor
should be called:
import streamlit as st
import pandas as pd
df = pd.DataFrame(
[
{"command": "st.selectbox", "rating": 4, "is_widget": True},
{"command": "st.balloons", "rating": 5, "is_widget": False},
{"command": "st.time_input", "rating": 3, "is_widget": True},
]
)
edited_df = st.data_editor(df)
favorite_command = edited_df.loc[edited_df["rating"].idxmax()]["command"]
st.markdown(f"Your favorite command is **{favorite_command}** 🎈")
Happy Streamliting!
Charly
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.
These cookies are necessary for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us understand how visitors move around the site and which pages are most frequently visited.
These cookies are used to record your choices and settings, maintain your preferences over time and recognize you when you return to our website. These cookies help us to personalize our content for you and remember your preferences.
These cookies may be deployed to our site by our advertising partners to build a profile of your interest and provide you with content that is relevant to you, including showing you relevant ads on other websites.