how to installe caffe in ubuntu 20.04

205 Views Asked by At

I try to install caffe but I still have a problem in the installation, I tried several tutorials but still I couldn't do it File "/home/lynda/caffe/python/caffe/proto/caffe_pb2.py", line 6, in from google.protobuf.internal import enum_type_wrapper ModuleNotFoundError: No module named 'google'

1

There are 1 best solutions below

0
Nabil On

You are missing the module google . You need to install it

sudo python3 -m pip install google

or

sudo python -m pip install google