Posts: 72
Threads: 14
Joined: Jul 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
Posts: 12,026
Threads: 485
Joined: Sep 2016
it is installed from command line, not from within python interpreter.
Posts: 72
Threads: 14
Joined: Jul 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.
Posts: 333
Threads: 4
Joined: Jun 2018
But how did you installed it?
Posts: 72
Threads: 14
Joined: Jul 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
Posts: 7,313
Threads: 123
Joined: Sep 2016
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.
Posts: 333
Threads: 4
Joined: Jun 2018
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?
Posts: 72
Threads: 14
Joined: Jul 2019
Jul-18-2019, 10:16 AM
(This post was last modified: Jul-18-2019, 10:17 AM by Piethon.)
(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!
Piethon
Posts: 12,026
Threads: 485
Joined: Sep 2016
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.
Posts: 72
Threads: 14
Joined: Jul 2019
Jul-20-2019, 09:42 AM
(This post was last modified: Jul-20-2019, 09:43 AM by Piethon.)
(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
|