You are not logged in.

#1 2020-03-22 08:31:29

obaino
Member
Registered: 2014-02-23
Posts: 3

[SOLVED] how to uninstall gcalcli installed by python setup.py install

I installed gcalcli using

git clone https://github.com/insanum/gcalcli.git
cd gcalcli
python setup.py install

Now I want to uninstall it and install it using yay.
What is the proper way to uninstall it?

Thank you

Last edited by obaino (2020-03-22 16:04:15)

Offline

#2 2020-03-22 08:41:34

Mr.Elendig
#archlinux@freenode channel op
From: The intertubes
Registered: 2004-11-07
Posts: 4,097

Re: [SOLVED] how to uninstall gcalcli installed by python setup.py install

There isn't one, this is why you should use venvs. You could try python setup.py install --record files.txt  and then delete the files it lists.


Evil #archlinux@libera.chat channel op and general support dude.
. files on github, Screenshots, Random pics and the rest

Offline

#3 2020-03-22 09:02:37

obaino
Member
Registered: 2014-02-23
Posts: 3

Re: [SOLVED] how to uninstall gcalcli installed by python setup.py install

Thanks for your answer.
I'll do as suggested.

Mr.Elendig wrote:

you should use venvs

What do you mean by venvs?

Offline

#4 2020-03-22 11:49:29

Lone_Wolf
Administrator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 15,426

Re: [SOLVED] how to uninstall gcalcli installed by python setup.py install


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.

clean chroot building not flexible enough ?
Try clean chroot manager by graysky

Offline

#5 2020-03-22 13:45:58

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 30,522
Website

Re: [SOLVED] how to uninstall gcalcli installed by python setup.py install

Or better yet, use the existing package.  (edit: better than using venvs, use packages when they are available.  This will not help undo what you have already done.)

Last edited by Trilby (2020-03-22 13:46:37)


"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman

Offline

#6 2020-03-22 14:14:42

eschwartz
Fellow
Registered: 2014-08-08
Posts: 4,097

Re: [SOLVED] how to uninstall gcalcli installed by python setup.py install

Mr.Elendig wrote:

There isn't one, this is why you should use venvs. You could try python setup.py install --record files.txt  and then delete the files it lists.

Surely this problem is already solved by the one which python setup.py install creates *by default* and installs into the python site-packages directory with the egg-info metadata???

obaino,

Use pip uninstall gcalcli which *should* uninstall everything that was created.

Trilby wrote:

Or better yet, use the existing package.  (edit: better than using venvs, use packages when they are available.  This will not help undo what you have already done.)

(Note that the OP's initial premise is *already* "I realized this was wrong of me, so now I want to install it using an AUR helper" (yay is an AUR helper). Preaching to the choir here. smile)

Last edited by eschwartz (2020-03-22 14:17:13)


Managing AUR repos The Right Way -- aurpublish (now a standalone tool)

Offline

#7 2020-03-22 15:58:59

obaino
Member
Registered: 2014-02-23
Posts: 3

Re: [SOLVED] how to uninstall gcalcli installed by python setup.py install

Thank you all for your really helpfull responses!

Offline

Board footer

Powered by FluxBB