Python Forum
I can't uninstall chatterbot? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: I can't uninstall chatterbot? (/thread-19830.html)



I can't uninstall chatterbot? - Piethon - Jul-16-2019

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


RE: I can't uninstall chatterbot? - Larz60+ - Jul-16-2019

it is installed from command line, not from within python interpreter.


RE: I can't uninstall chatterbot? - Piethon - Jul-16-2019

(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.


RE: I can't uninstall chatterbot? - gontajones - Jul-16-2019

But how did you installed it?


RE: I can't uninstall chatterbot? - Piethon - Jul-17-2019

(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


RE: I can't uninstall chatterbot? - snippsat - Jul-17-2019

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.


RE: I can't uninstall chatterbot? - gontajones - Jul-17-2019

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?


RE: I can't uninstall chatterbot? - Piethon - Jul-18-2019

(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


RE: I can't uninstall chatterbot? - Larz60+ - Jul-19-2019

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.


RE: I can't uninstall chatterbot? - Piethon - Jul-20-2019

(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