Amily
Amily

Reputation: 335

tensorflow 1.1 version download on Windows

I'd like to download 1.1.0 version tensorflow. But they don't support that version with pip anymore. How can I download it? or is there any helpful things that can help to fix codes from low version to latest version?

Upvotes: 0

Views: 3987

Answers (1)

ReInvent_IO
ReInvent_IO

Reputation: 477

Try to use

pip install tensorflow==<version>

If it doesn't work, please try the below

In https://pypi.org/project/tensorflow/1.1.0/ download .whl of the version you need and install it using pip.

Upvotes: 1

Related Questions