Mehdi Ghorbani
Mehdi Ghorbani

Reputation: 61

protobuf requires Python '>=3.7' but the running Python is 3.6.4

I'm using CARLA simulator and for that I need to use python 3.6 and protobuf.

When I want to install 'protobuf' I get this error:

protobuf requires Python '>=3.7' but the running Python is 3.6.4

Does anyone know what to do?

Upvotes: 3

Views: 20719

Answers (1)

Özkan ŞEN
Özkan ŞEN

Reputation: 81

You can install the package that works in python version 3.6. link below link

how to install: pip install protobuf==3.19.6

Upvotes: 8

Related Questions