Dead from the start

Windows 10 Python 3.6 installed

I did the pp install,

Then stremalit hello and got:
Traceback (most recent call last):
File “c:\users\bills\appdata\local\programs\python\python36\lib\runpy.py”, line 193, in run_module_as_main
main”, mod_spec)
File “c:\users\bills\appdata\local\programs\python\python36\lib\runpy.py”, line 85, in run_code
exec(code, run_globals)
File "C:\Users\BillS\AppData\Local\Programs\Python\Python36\Scripts\streamlit.exe_main
.py", line 4, in
File "c:\users\bills\appdata\local\programs\python\python36\lib\site-packages\streamlit_init
.py", line 75, in
from streamlit.delta_generator import DeltaGenerator as _DeltaGenerator
File “c:\users\bills\appdata\local\programs\python\python36\lib\site-packages\streamlit\delta_generator.py”, line 19, in
from streamlit import cursor
File “c:\users\bills\appdata\local\programs\python\python36\lib\site-packages\streamlit\cursor.py”, line 17, in
from streamlit.report_thread import get_report_ctx
File “c:\users\bills\appdata\local\programs\python\python36\lib\site-packages\streamlit\report_thread.py”, line 20, in
from streamlit.proto.BlockPath_pb2 import BlockPath
File “c:\users\bills\appdata\local\programs\python\python36\lib\site-packages\streamlit\proto\BlockPath_pb2.py”, line 21, in
create_key=_descriptor._internal_create_key,
AttributeError: module ‘google.protobuf.descriptor’ has no attribute ‘_internal_create_key’

SO ho do I get it going??

Hello @Bill_Strum, welcome to the community :slight_smile:

Judging from the module ‘google.protobuf.descriptor’ has no attribute ‘_internal_create_key’ part, it seems your protobuf package has not been upgraded correctly. Can you try reinstalling it ?

pip uninstall protobuf
pip install protobuf

Similar issue

Hope you get through that!

Cheers,
Fanilo

1 Like