Download method of tensorflow historical version offline version

Version link

gpu version

https://pypi.org/project/tensorflow-gpu/1.15.2/#files

cpu version

https://pypi.org/project/tensorflow/1.15.2/#files

Link description

  • https://pypi.org/project/ homepage
  • tensorflow-gpu/  or tensorflow/  is the version,
  • /1.15.2/ is the version number,
  • /#files download link. If you just want to jump to the relevant page, remove this/#files.

Get the relevant version number

pip install tensorflow==11.11
pip install tensorflow-gpu==11.11

Then it will report an error and give you the relevant version information:

cpu version

ERROR: Could not find a version that 
satisfies the requirement tensorflow==11.11 (
from versions: 
1.2.0rc2, 1.2.0, 1.2.1, 
1.3.0rc0, 1.3.0rc1, 1.3.0rc2, 1.3.0, 
1.4.0rc0, 1.4.0rc1, 1.4.0, 
1.5.0rc0, 1.5.0rc1, 1.5.0, 1.5.1, 
1.6.0rc0, 1.6.0rc1, 1.6.0, 
1.7.0rc0, 1.7.0rc1, 1.7.0, 1.7.1, 
1.8.0rc0, 1.8.0rc1, 1.8.0,
1.9.0rc0, 1.9.0rc1, 1.9.0rc2, 1.9.0, 
1.10.0rc0, 1.10.0rc1, 1.10.0, 
1.11.0rc0, 1.11.0rc1, 1.11.0rc2, 1.11.0, 
1.12.0rc0, 1.12.0rc1, 1.12.0rc2, 1.12.0, 1.12.2, 1.12.3, 
1.13.0rc0, 1.13.0rc1, 1.13.0rc2, 1.13.1, 1.13.2, 
1.14.0rc0, 1.14.0rc1, 1.14.0, 
1.15.0rc0, 1.15.0rc1, 1.15.0rc2, 1.15.0rc3, 1.15.0, 1.15.2, 1.15.3, 
2.0.0a0, 2.0.0b0, 2.0.0b1, 2.0.0rc0, 2.0.0rc1, 2.0.0rc2, 2.0.0, 2.0.1, 2.0.2, 2.1.0rc0, 
2.1.0rc1, 2.1.0rc2, 2.1.0, 2.1.1, 
2.2.0rc0, 2.2.0rc1, 2.2.0rc2, 2.2.0rc3, 2.2.0rc4, 2.2.0, 
2.3.0rc0, 2.3.0rc1, 2.3.0rc2, 2.3.0)
ERROR: No matching distribution found for tensorflow==11.11

gpu version

ERROR: Could not find a version that satisfies the requirement tensorflow-gpu==11.11 (from versions: 
1.2.0, 1.2.1, 
1.3.0, 
1.4.0, 
1.5.0, 1.5.1, 
1.6.0, 
1.7.0, 1.7.1, 
1.8.0, 
1.9.0, 
1.10.0, 1.11.0, 1
.12.0, 1.12.2, 1.12.3, 
1.13.1, 1.13.2, 
1.14.0, 
1.15.0rc0, 1.15.0rc1, 1.15.0rc2, 1.15.0rc3, 1.15.0, 1.15.2, 1.15.3, 
2.0.0a0, 2.0.0b0, 2.0.0b1, 2.0.0rc0, 2.0.0rc1, 2.0.0rc2, 2.0.0, 2.0.1, 2.0.2,
2.1.0rc0, 2.1.0rc1, 2.1.0rc2, 2.1.0, 2.1.1, 
2.2.0rc0, 2.2.0rc1, 2.2.0rc2, 2.2.0rc3, 2.2.0rc4, 2.2.0, 
2.3.0rc0, 2.3.0rc1, 2.3.0rc2, 2.3.0)
ERROR: No matching distribution found for tensorflow-gpu==11.11

The gpu and cpu version numbers are not the same. Then modify the relevant parts, and then download the offline version.

I should be able to understand it.

Guess you like

Origin blog.csdn.net/weixin_39875161/article/details/108293340