Uninstall Python Compiled App on Debian
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
So ages ago I knew how to do this but now I have forgot the last command.
So for some odd reason alot of python apps I compile to the system and not just python apps donôt have uninstall options in the MAKEFILE. So someone told me to run python setup.py install --record installed-locations.txt
instead of the usuall python setup.py install
. I am awear I could go and look at that text file and delete each file manually with rm but I remember there was a command that ould look into that text file and automaticly remove them for me. The issue is I donôt remember this command.
Does anyone know what command I am talking about or know of a command that could do this?
debian python compiling uninstall
add a comment |Â
up vote
0
down vote
favorite
So ages ago I knew how to do this but now I have forgot the last command.
So for some odd reason alot of python apps I compile to the system and not just python apps donôt have uninstall options in the MAKEFILE. So someone told me to run python setup.py install --record installed-locations.txt
instead of the usuall python setup.py install
. I am awear I could go and look at that text file and delete each file manually with rm but I remember there was a command that ould look into that text file and automaticly remove them for me. The issue is I donôt remember this command.
Does anyone know what command I am talking about or know of a command that could do this?
debian python compiling uninstall
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
So ages ago I knew how to do this but now I have forgot the last command.
So for some odd reason alot of python apps I compile to the system and not just python apps donôt have uninstall options in the MAKEFILE. So someone told me to run python setup.py install --record installed-locations.txt
instead of the usuall python setup.py install
. I am awear I could go and look at that text file and delete each file manually with rm but I remember there was a command that ould look into that text file and automaticly remove them for me. The issue is I donôt remember this command.
Does anyone know what command I am talking about or know of a command that could do this?
debian python compiling uninstall
So ages ago I knew how to do this but now I have forgot the last command.
So for some odd reason alot of python apps I compile to the system and not just python apps donôt have uninstall options in the MAKEFILE. So someone told me to run python setup.py install --record installed-locations.txt
instead of the usuall python setup.py install
. I am awear I could go and look at that text file and delete each file manually with rm but I remember there was a command that ould look into that text file and automaticly remove them for me. The issue is I donôt remember this command.
Does anyone know what command I am talking about or know of a command that could do this?
debian python compiling uninstall
edited Jan 7 at 6:19
asked Jan 5 at 3:49
Liam O'Luachra
134
134
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
Found it. cat files.txt | xargs rm -rf
So in summory to uninstall apps from system compiled with python follow these steps
1)
Download the source code for the exsact version of said app if you do not have it already
2)
Extract the file and cd into the extracted files
3) Run as root python setup.py install --record files.txt
4) Now run as root cat files.txt | xargs rm -rf
The application should now be uninstalled. If need be go clean up all the config and setting files in your home directory to regain some more space.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
Found it. cat files.txt | xargs rm -rf
So in summory to uninstall apps from system compiled with python follow these steps
1)
Download the source code for the exsact version of said app if you do not have it already
2)
Extract the file and cd into the extracted files
3) Run as root python setup.py install --record files.txt
4) Now run as root cat files.txt | xargs rm -rf
The application should now be uninstalled. If need be go clean up all the config and setting files in your home directory to regain some more space.
add a comment |Â
up vote
0
down vote
accepted
Found it. cat files.txt | xargs rm -rf
So in summory to uninstall apps from system compiled with python follow these steps
1)
Download the source code for the exsact version of said app if you do not have it already
2)
Extract the file and cd into the extracted files
3) Run as root python setup.py install --record files.txt
4) Now run as root cat files.txt | xargs rm -rf
The application should now be uninstalled. If need be go clean up all the config and setting files in your home directory to regain some more space.
add a comment |Â
up vote
0
down vote
accepted
up vote
0
down vote
accepted
Found it. cat files.txt | xargs rm -rf
So in summory to uninstall apps from system compiled with python follow these steps
1)
Download the source code for the exsact version of said app if you do not have it already
2)
Extract the file and cd into the extracted files
3) Run as root python setup.py install --record files.txt
4) Now run as root cat files.txt | xargs rm -rf
The application should now be uninstalled. If need be go clean up all the config and setting files in your home directory to regain some more space.
Found it. cat files.txt | xargs rm -rf
So in summory to uninstall apps from system compiled with python follow these steps
1)
Download the source code for the exsact version of said app if you do not have it already
2)
Extract the file and cd into the extracted files
3) Run as root python setup.py install --record files.txt
4) Now run as root cat files.txt | xargs rm -rf
The application should now be uninstalled. If need be go clean up all the config and setting files in your home directory to regain some more space.
answered Jan 7 at 5:55
Liam O'Luachra
134
134
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f414906%2funinstall-python-compiled-app-on-debian%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password