【问题标题】:How to install tensorflow in python 3.86 OS Windows 10 (64-bit)如何在 python 3.86 OS Windows 10(64 位)中安装 tensorflow
【发布时间】:2020-11-16 15:31:09
【问题描述】:

当我尝试像这样使用 pip 安装 tensorflow 时

pip install tensorflow

它给了我以下错误:

Collecting tensorflow
  Downloading tensorflow-2.3.1-cp38-cp38-win_amd64.whl (342.5 MB)
     |                                | 3.4 MB 12 kB/s eta 7:44:02ERROR: Exception:
Traceback (most recent call last):
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_vendor\urllib3\response.py", line 437, in _error_catcher
    yield
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_vendor\urllib3\response.py", line 519, in read
    data = self._fp.read(amt) if not fp_closed else b""
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_vendor\cachecontrol\filewrapper.py", line 62, in read
    data = self.__fp.read(amt)
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\http\client.py", line 458, in read
    n = self.readinto(b)
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\http\client.py", line 502, in readinto
    n = self.fp.readinto(b)
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\socket.py", line 669, in readinto
    return self._sock.recv_into(b)
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\ssl.py", line 1241, in recv_into
    return self.read(nbytes, buffer)
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\ssl.py", line 1099, in read
    return self._sslobj.read(len, buffer)
socket.timeout: The read operation timed out

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_internal\cli\base_command.py", line 228, in _main
    status = self.run(options, args)
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_internal\cli\req_command.py", line 182, in wrapper
    return func(self, options, args)
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_internal\commands\install.py", line 323, in run
    requirement_set = resolver.resolve(
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_internal\resolution\legacy\resolver.py", line 183, in resolve
    discovered_reqs.extend(self._resolve_one(requirement_set, req))
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_internal\resolution\legacy\resolver.py", line 388, in _resolve_one
    abstract_dist = self._get_abstract_dist_for(req_to_install)
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_internal\resolution\legacy\resolver.py", line 340, in _get_abstract_dist_for
    abstract_dist = self.preparer.prepare_linked_requirement(req)
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_internal\operations\prepare.py", line 467, in prepare_linked_requirement
    local_file = unpack_url(
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_internal\operations\prepare.py", line 255, in unpack_url
    file = get_http_url(
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_internal\operations\prepare.py", line 129, in get_http_url
    from_path, content_type = _download_http_url(
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_internal\operations\prepare.py", line 282, in _download_http_url
    for chunk in download.chunks:
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_internal\cli\progress_bars.py", line 168, in iter
    for x in it:
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_internal\network\utils.py", line 64, in response_chunks
    for chunk in response.raw.stream(
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_vendor\urllib3\response.py", line 576, in stream
    data = self.read(amt=amt, decode_content=decode_content)
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_vendor\urllib3\response.py", line 541, in read
    raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\contextlib.py", line 131, in __exit__
    self.gen.throw(type, value, traceback)
  File "c:\users\win 10\appdata\local\programs\python\python38\lib\site-packages\pip\_vendor\urllib3\response.py", line 442, in _error_catcher
    raise ReadTimeoutError(self._pool, None, "Read timed out.")
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.

错误是什么意思,我该如何安装?

如果我在谷歌上搜索如何安装 tensorflow,它会告诉我从虚拟环境中下载它,我不知道如何创建虚拟环境

【问题讨论】:

  • 这听起来像是您的互联网连接问题,只需重复该命令直到成功。
  • Python 3.8 尚未完全支持某些操作系统上的最新 tensorflow(或某些特殊规范)。加载最新的 TensorFlow 可能会出现问题。使用 conda 创建虚拟环境。如果您已经有 Anaconda,只需打开 Anaconda 提示符并输入 conda create -n tf python=3.7 然后输入 conda activate tf。之后,pip install tensorflow
  • @RaghavGupta 所以我需要安装 python 3.7?
  • 如果你有Anaconda,你不需要下载python 3.7来创建虚拟环境。虚拟环境的目的是让我们不显式安装某些 python 版本。它会为你做的,不用担心。只要确保你通过 anaconda 提示符运行你的命令

标签: python python-3.x tensorflow pip


【解决方案1】:

正如@Dr. 评论的那样。史努比,错误看起来像连接问题。 TensorFlow 2.2 或更高版本需要 Python 3.8。更多请访问官网Tensorflow

正如@Raghav Gupta 所建议的,conda 负责处理包版本不兼容问题。

conda create --name tf python=3.8 tensorflow #install python 3.8 and latest version of Tensorflow

【讨论】:

    猜你喜欢
    • 2015-11-05
    • 2017-10-26
    • 2017-12-19
    • 2016-07-30
    • 1970-01-01
    • 2017-04-10
    • 1970-01-01
    • 2018-08-26
    相关资源
    最近更新 更多