安装chatterBot时出错

Sum*_* GK 2 python chatterbot

每当我尝试使用命令安装 ChatterBot 时,pip install ChatterBot都会出现以下错误:

Retrying (Retry(total=0, connect=None, read=None, redirect=None)) after connection broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x0000000003687898>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed',)': /simple/chatterbot/
  Could not find a version that satisfies the requirement chatterbot (from versi
ons: )
No matching distribution found for chatterbot
Run Code Online (Sandbox Code Playgroud)

我从 Python 3.6 降级到 2.7,但收到相同的错误。

我使用的是 Windows 8、Anaconda 2.7

小智 17

试试这个它将安装:

pip install chatterbot==1.0.4
Run Code Online (Sandbox Code Playgroud)

  • 工作了。为什么这个评论如此被低估? (2认同)