pythonchatterbot

Error while installing chatterBot


Whenever I try to install ChatterBot using command pip install ChatterBot it gives this error:

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

I downgraded from Python 3.6 to 2.7, yet receiving the same error.

I am using windows 8, Anaconda 2.7


Solution

  • You are getting this error because you have not installed required package. I think you need download them and install them before trying to install the chatterBot directly. You can install using 'pip' or you can download and us 'python'.

    pip install path_where_you_have_downloaded_packages

    or

    python path_where_you_have_downloaded_packages\setup.py install

    Try it.