Uninstall Python Compiled App on Debian

The name of the pictureThe name of the pictureThe name of the pictureClash 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?







share|improve this question


























    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?







    share|improve this question
























      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?







      share|improve this question














      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?









      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 7 at 6:19

























      asked Jan 5 at 3:49









      Liam O'Luachra

      134




      134




















          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.






          share|improve this answer




















            Your Answer







            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "106"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );








             

            draft saved


            draft discarded


















            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






























            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.






            share|improve this answer
























              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.






              share|improve this answer






















                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.






                share|improve this answer












                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.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jan 7 at 5:55









                Liam O'Luachra

                134




                134






















                     

                    draft saved


                    draft discarded


























                     


                    draft saved


                    draft discarded














                    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













































































                    Popular posts from this blog

                    How to check contact read email or not when send email to Individual?

                    Bahrain

                    Postfix configuration issue with fips on centos 7; mailgun relay