Streamlit.number_input()

I want to take integer input from user but streamlit showing this error. how can i solve this problem.

AttributeError : module ‘streamlit’ has no attribute ‘number_input’

Hi @Sandeep - welcome to the community! Just checking, what version of Streamlit are you running? You can check with:

$ streamlit version

Streamlit only added st.number_input in version 0.49.0 so if you downloaded before October 23rd, your version wouldn’t have support for it.

If that’s not the issue let me know and we’ll do some troubleshooting together!

1 Like

thank you