pip install tensorflow-gpu not downloading

Question:

When I pip install tensroflow-gpu, the download reaching
67.7/455 MB gives me this error.

    C:UsersZouzou>pip3 install tensorflow-gpu
Collecting tensorflow-gpu
  Downloading tensorflow_gpu-2.10.0-cp39-cp39-win_amd64.whl (455.9 MB)
     ----- ---------------------------------- 67.7/455.9 MB 49.1 kB/s eta 2:11:48
ERROR: Exception:
Traceback (most recent call last):
  File "C:UsersZouzouAppDataLocalProgramsPythonPython39libsite-packagespip_vendorurllib3response.py", line 435, in _error_catcher
    yield
  File "C:UsersZouzouAppDataLocalProgramsPythonPython39libsite-packagespip_vendorurllib3response.py", line 516, in read
    data = self._fp.read(amt) if not fp_closed else b""
  File "C:UsersZouzouAppDataLocalProgramsPythonPython39libsite-packagespip_vendorcachecontrolfilewrapper.py", line 90, in read
    data = self.__fp.read(amt)

  File "C:UsersZouzouAppDataLocalProgramsPythonPython39libhttpclient.py", line 463, in read
    n = self.readinto(b)

I am using python 3.9.10 and I have a Nvidia GeForce 610M. Note, my computer becomes hot during the download.

Asked By: h81 edrick

||

Answers:

The download time was too long. Solution:

pip install tensorflow-gpu --timeout 1000
Answered By: h81 edrick
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.