본문 바로가기
ERR 해결할레나

[에러] ImportError: cannot import name 'runtime_version' from 'google.protobuf'

by LENA-cfg 2024. 9. 10.

문제

strealit run app.py 실행하는데 해당 에러 발생

최근에 protobuf가 업데이트 했고 변경사항이 많아서 호환안되는 것

해결

pip uninstall protobuf
pip install protobuf

참고 문서

https://github.com/streamlit/streamlit/issues/8965