Django Girls and Boys 備忘録

Python、Selenium、Django、java、iPhoneアプリ、Excelマクロなどで気付いたこと、覚えておきたいことなどを載せていきます。

【Unity Python】ML-Agentsで”TypeError: Descriptors cannot not be created directly.”のエラーが表示された時の解決方法


このところ以下のような書籍を参考にしてUnityでML-Agentsを使って強化学習をさせるようなことをしています。

 

 

その中でRollerBallというサンプルプロジェクトに沿ってpython側で学習をさせようとした時に以下のようなエラーが発生しました。

 

このエラーの解決方法について備忘録として残しておきたいと思います。

 

 

 

 

 

1.エラー内容

 

 

TypeError: Descriptors cannot not be created directly.
If this call came from a _pb2.py file, your generated code is out of date and must be regenerated with protoc >= 3.19.0.
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).

 

 

2.解決方法

 

 

エラーの原因はprotobufのバージョンが高すぎることだったためバージョンを下げることで解決できます。

 

メッセージには「protobufのバージョンを3.20.x以下に」とあるので具体的には以下のコマンドを実行することでprotobufのバージョンを3.20.1に下げてこのエラー発生はなくなりました。

 

pip install protobuf==3.20.1

 

以上が”TypeError: Descriptors cannot not be created directly.”のエラーが表示された時の解決方法になります。