installing tensorflow on ubuntu linux, protobuf version issue

While installing tensorflow on Ubuntu (GCloud VM), I am getting alert as -

pip install tensorflow

apache-beam 0.6.0 has requirement protobuf==3.2.0, but you'll have protobuf 3.5.2 which is incompatible.


  1. pip install apache-beam

tensorflow-tensorboard 0.4.0 has requirement protobuf>=3.4.0, but you'll have protobuf 3.2.0 which is incompatible. tensorboard 1.7.0 has requirement protobuf>=3.4.0, but you'll have protobuf 3.2.0 which is incompatible. tensorflow 1.4.1 has requirement protobuf>=3.3.0, but you'll have protobuf 3.2.0 which is incompatible. grpcio 1.11.0 has requirement protobuf>=3.5.0.post1, but you'll have protobuf 3.2.0 which is incompatible.

  1. When directly upgrading the protobuf version -

    pip install protobuf==3.5.2



While installing tensorflow on Ubuntu (GCloud VM), I am getting alert as -

pip install tensorflow

apache-beam 0.6.0 has requirement protobuf==3.2.0, but you'll have protobuf 3.5.2 which is incompatible.

猜你喜欢

转载自blog.csdn.net/gqixf/article/details/80090922