Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. $ pip3 show tensorflow-gpu
  2. ---
  3. Metadata-Version: 2.0
  4. Name: tensorflow-gpu
  5. Version: 1.2.1
  6. Summary: TensorFlow helps the tensors flow
  7. Home-page: http://tensorflow.org/
  8. Author: Google Inc.
  9. Author-email: opensource@google.com
  10. Installer: pip
  11. License: Apache 2.0
  12. Location: /home/ubuntu/.local/lib/python3.5/site-packages
  13. Requires: werkzeug, bleach, html5lib, six, numpy, backports.weakref, markdown, protobuf, wheel
  14. Classifiers:
  15. Development Status :: 4 - Beta
  16. Intended Audience :: Developers
  17. Intended Audience :: Education
  18. Intended Audience :: Science/Research
  19. License :: OSI Approved :: Apache Software License
  20. Programming Language :: Python :: 2.7
  21. Topic :: Scientific/Engineering :: Mathematics
  22. Topic :: Software Development :: Libraries :: Python Modules
  23. Topic :: Software Development :: Libraries
  24. Entry-points:
  25. [console_scripts]
  26. saved_model_cli = tensorflow.python.tools.saved_model_cli:main
  27. tensorboard = tensorflow.tensorboard.tensorboard:main
  28. You are using pip version 8.1.1, however version 9.0.1 is available.
  29. You should consider upgrading via the 'pip install --upgrade pip' command.
  30.  
  31. $ pip3 install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.2.1-cp36-cp36m-linux_x86_64.whl
  32. tensorflow_gpu-1.2.1-cp36-cp36m-linux_x86_64.whl is not a supported wheel on this platform.
  33.  
  34. $ python --version
  35. Python 3.6.1 :: Anaconda 4.4.0 (64-bit)
  36.  
  37. $ pip3 install --ignore-installed --upgrade tensorflow-gpu
  38. Collecting tensorflow-gpu
  39. Using cached tensorflow_gpu-1.2.1-cp35-cp35m-manylinux1_x86_64.whl
  40. Collecting werkzeug>=0.11.10 (from tensorflow-gpu)
  41. Using cached Werkzeug-0.12.2-py2.py3-none-any.whl
  42. Collecting six>=1.10.0 (from tensorflow-gpu)
  43. Using cached six-1.10.0-py2.py3-none-any.whl
  44. Collecting wheel>=0.26 (from tensorflow-gpu)
  45. Using cached wheel-0.29.0-py2.py3-none-any.whl
  46. Collecting backports.weakref==1.0rc1 (from tensorflow-gpu)
  47. Using cached backports.weakref-1.0rc1-py3-none-any.whl
  48. Collecting protobuf>=3.2.0 (from tensorflow-gpu)
  49. Using cached protobuf-3.3.0-cp35-cp35m-manylinux1_x86_64.whl
  50. Collecting html5lib==0.9999999 (from tensorflow-gpu)
  51. Collecting bleach==1.5.0 (from tensorflow-gpu)
  52. Using cached bleach-1.5.0-py2.py3-none-any.whl
  53. Collecting numpy>=1.11.0 (from tensorflow-gpu)
  54. Using cached numpy-1.13.1-cp35-cp35m-manylinux1_x86_64.whl
  55. Collecting markdown>=2.6.8 (from tensorflow-gpu)
  56. Collecting setuptools (from protobuf>=3.2.0->tensorflow-gpu)
  57. Using cached setuptools-36.2.4-py2.py3-none-any.whl
  58. Installing collected packages: werkzeug, six, wheel, backports.weakref, setuptools, protobuf, html5lib, bleach, numpy, markdown, tensorflow-gpu
  59. Successfully installed backports.weakref-1.0rc1 bleach-1.5.0 html5lib-0.9999999 markdown-2.6.8 numpy-1.13.1 protobuf-3.3.0 setuptools-36.2.4 six-1.10.0 tensorflow-gpu-1.2.1 werkzeug-0.12.2 wheel-0.29.0
  60. You are using pip version 8.1.1, however version 9.0.1 is available.
  61. You should consider upgrading via the 'pip install --upgrade pip' command.
  62.  
  63. $ pip install --upgrade pip
  64. Requirement already up-to-date: pip in ./anaconda3/lib/python3.6/site-packages
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement