You are not logged in.
This is more a general or best practice question.
I installed a python program (gnoduino) manually some time ago using:
python setup.py build installI found out that this program is available via AUR and it would be comfortable to use the AUR version.
So what should I do now. Manually delete everything that the python installer installed, with hope not to forget anything. And after that install via AUR?
Or leave it installed and start the install process via AUR and "overwrite" the old files?
In the first case: How do I delete everything?
whereis gnoduino
gnoduino: /usr/bin/gnoduino /usr/share/gnoduino /usr/share/man/man1/gnoduino.1And I know that the python files reside in "/usr/lib/python2.7/site-packages/gnoduino".
Delete these files and I'm fine?
Offline
Best practice would be to rebuild that package and uninstall, or use the built but not installed copy to locate and remove the files.
Bad practice and also my method would be to install with the -f flag and overwrite it.
However this could lead to breakage and more work if it goes wrong.
[NEO]Where we go from there is a choice I leave to you. [/NEO]
Offline
Just find all files not owned by any of your packages and remove them: https://wiki.archlinux.org/index.php/Pa … ny_package
Arch Linux is more than just GNU/Linux -- it's an adventure
pkill -9 systemd
Offline