Reputation: 335
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
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