본문 바로가기
개발/에러해결

If you cannot immediately regenerate your protos, some other possible workarounds are: 1. Downgrade the protobuf package to 3.20.x or lower. 2. Set PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python (but this will use pure-Python parsing and will be much slo..

by amkorousagi 2023. 4. 21.

If you cannot immediately regenerate your protos, some other possible workarounds are:
 1. Downgrade the protobuf package to 3.20.x or lower.
 2. Set PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python (but this will use pure-Python parsing and will be much slower).

 

에러 내용


If you cannot immediately regenerate your protos, some other possible workarounds are: 1. Downgrade the protobuf package to 3.20.x or lower. 2. Set PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python (but this will use pure-Python parsing and will be much slower).

Unity ML Agent를 window에서 설치하고 실행하는 도중에 만난 에러

 

에러 원인


protobuf가 버전이 호환이 되지 않는다.

 

해결 방법


pip uninstall protobuf
pip insatll protobuf==3.19.6

 

댓글