AttributeError: module 'streamlit' has no attribute 'bokeh'

Hello,

I am using python 3,7
bokeh version 1.4.0
streamlit version 1,1,0

But i get streamlit has no attribute bokeh error.
Can you help me?

   x=df_base['Week'].values.tolist()
   y=df_base['Kümüle_Tutar'].values.tolist()
   p= figure( 
      title= 'Envanter Tutar Syri',
	  x_axis_label= 'x',
	  y_axis_label='y')
   p.line(x,y,line_width=2)
   st.bokeh.chart(p,use_container_width=True)

This line has a . where it should be _. st.bokeh_chart

Best,
Randy

1 Like

Ohh no
Thank you very much

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.