简体   繁体   中英

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM