Python Forum
I can't uninstall chatterbot?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
I can't uninstall chatterbot?
#1
Hello.

I've installed chatterbot. But now I don't need it anymore, so I wanted to uninstall it.
I've tried:

pip3 uninstall chatterbot

but then it always tells me, that the package chatterbot is not installed, but it go installed on my computer.
What can I do?

Thanks for your help.
Piethon
Reply
#2
it is installed from command line, not from within python interpreter.
Reply
#3
(Jul-16-2019, 02:40 PM)Larz60+ Wrote: it is installed from command line, not from within python interpreter.

Not working either. I always get the error:

Skipping chatterbot as it is not installed.

But it is installed. What command shall I use, I've tried so many.
Reply
#4
But how did you installed it?
Reply
#5
(Jul-16-2019, 05:02 PM)gontajones Wrote: But how did you installed it?

pip3 install chatterbot

It installed a full package including:
pytz, tqdm, numpy, blis, murmurhash, plac, wasabi, cymem, srsly, preshed, thinc, chardet, urllib3, idna, certifi, requests, spacy, sqlalchemy, nltk, pyyaml, python-dateutil, pint, mathparse, pymongo, chatterbot
Reply
#6
pip3 -V show you where pip3 install to.
pip3 show package show placement.
λ pip show requests
Name: requests
Version: 2.21.0
Summary: Python HTTP for Humans.
Home-page: http://python-requests.org
Author: Kenneth Reitz
Author-email: [email protected]
License: Apache 2.0
Location: c:\python37\lib\site-packages
Requires: certifi, urllib3, chardet, idna
Required-by: tweepy, sumy, sodapy, requests-oauthlib, requests-html, requests-cache, influxdb, howdoi, Glances, docker
If have upgraded Python version or used virtual environment then need to look at there placement.
Reply
#7
If you have really installed chatterbot with pip3 install chatterbot, this command will list it and all other packages:
pip3 list

How do you know it is still installed?
Reply
#8
(Jul-17-2019, 05:38 PM)gontajones Wrote: If you have really installed chatterbot with pip3 install chatterbot, this command will list it and all other packages:
pip3 list

How do you know it is still installed?

Ok. I've checked it, and Chatterbot and these other modules I've listed above, are not listed. So if I try
pip3 uninstall chatterbot
I'm getting this message:

Skipping chatterbot as it is not installed.

That means, it is not installed anymore. Thank you for your help! Smile

Piethon
Reply
#9
If you have more than one version of python loaded, you may have installed to a version that you are not using, gontajones was trying to point out that the -V option will show which versions are being used.
try:
python -V
pip3 -V
python3 -V
the python that matches pip3 is the one with Chatterbot installed.
Reply
#10
(Jul-19-2019, 09:02 AM)Larz60+ Wrote: If you have more than one version of python loaded, you may have installed to a version that you are not using, gontajones was trying to point out that the -V option will show which versions are being used.
try:
python -V
pip3 -V
python3 -V
the python that matches pip3 is the one with Chatterbot installed.

I just have python 3.7 installed. Thanks anyway
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Impossible to cleanly uninstall Python 3.8.9 Ftaniere 2 1,646 Sep-01-2022, 10:38 AM
Last Post: snippsat
  Uninstall unused COM ports windows 10 adbrooker 1 1,979 Sep-22-2021, 03:16 AM
Last Post: Larz60+
  chatterbot utf-8 errors with mysql database isolatedastronaut 0 1,539 Nov-08-2020, 06:54 AM
Last Post: isolatedastronaut
  How to fully uninstall Python from Windows? Winfried 6 10,341 May-27-2020, 10:16 PM
Last Post: snippsat
  ChatterBot: How to store unanswered question in a text file? animrehrm 0 1,877 May-16-2020, 06:00 AM
Last Post: animrehrm
  Do I need to uninstall my current Python distribution (3.7) to install Anaconda? Tim 2 23,108 Jul-10-2018, 03:03 PM
Last Post: Tim

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020