Removing Python Binaries with make command
Hi I have installed Python3 with running ./configure , make and then make installand now can't find an option in Makefile to remove the binaries with make command. Is there a way to cleanly remove Python3 Binaries after compiling on a system ? ThanksDB
On Mon, Feb 23, 2015 at 05:09:51PM +0000, Blaxton <blaxxton@yahoo.com.dmarc.invalid> wrote:
Hi I have installed Python3 with running ./configure , make and then make installand now can't find an option in Makefile to remove the binaries with make command. Is there a way to cleanly remove Python3 Binaries after compiling on a system ? ThanksDB
There is no way AFAIK. That what CheckInstall[1] is for but you should have used it before make install. 1. http://asic-linux.com.mx/~izto/checkinstall/index.php PS. And such questions belong to python-list, I think, rather than python-dev which is about developing Python, not using it. Oleg. -- Oleg Broytman http://phdru.name/ phd@phdru.name Programmers don't die, they just GOSUB without RETURN.
It could arguably considered a bug report. On Mon, Feb 23, 2015 at 9:48 AM, Oleg Broytman <phd@phdru.name> wrote:
On Mon, Feb 23, 2015 at 05:09:51PM +0000, Blaxton <blaxxton@yahoo.com.dmarc.invalid> wrote:
Hi I have installed Python3 with running ./configure , make and then make installand now can't find an option in Makefile to remove the binaries with make command. Is there a way to cleanly remove Python3 Binaries after compiling on a system ? ThanksDB
There is no way AFAIK. That what CheckInstall[1] is for but you should have used it before make install.
1. http://asic-linux.com.mx/~izto/checkinstall/index.php
PS. And such questions belong to python-list, I think, rather than python-dev which is about developing Python, not using it.
Oleg. -- Oleg Broytman http://phdru.name/ phd@phdru.name Programmers don't die, they just GOSUB without RETURN. _______________________________________________ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/guido%40python.org
-- --Guido van Rossum (python.org/~guido)
On Mon Feb 23 2015 at 12:14:08 PM Blaxton <blaxxton@yahoo.com.dmarc.invalid> wrote:
Hi
I have installed Python3 with running ./configure , make and then make install and now can't find an option in Makefile to remove the binaries with make command.
Is there a way to cleanly remove Python3 Binaries after compiling on a system ?
Sorry, there's is no explicit `make uninstall`. Since most people either use the installers for Windows or OS X or use their Linux distro's installer I don't know if anyone has tried to write a `make uninstall` command.
participants (4)
-
Blaxton
-
Brett Cannon
-
Guido van Rossum
-
Oleg Broytman