kjwdamme
kjwdamme

Reputation: 309

Not possible to install tensorflow 1.3.0

I am trying to get the `Mask R CNN to work from this Github repo: Mask_RCNN

This requires TensorFlow 1.3.0 but when I try to install this specific version it just installs TensorFlow 2.0.0 anyway. I am using the following command:

pip install tensorflow>=1.3.0

I am also using python 3.7.1

Upvotes: 3

Views: 3852

Answers (1)

pissall
pissall

Reputation: 7399

You are downloading the latest tensorflow version, but greater than 1.3.0 with >=1.3.0

What you need is:

pip install tensorflow==1.13.1

Upvotes: 2

Related Questions