how to remove uninstall ?

Asked by Lagoda

Hi,
Sorry i don't find how to remove duplicity after i have installed using python like this :
    tar xaf duplicity-0.8.*.tar.gz
    cd duplicity-0.8.*/
    pip3 install -r requirements.txt
    python3 setup.py install

I have try python3 setup.py uninstall or python3 setup.py remove but not work.
The --help not have uninstall option

Question information

Language:
English Edit question
Status:
Solved
For:
Duplicity Edit question
Assignee:
No assignee Edit question
Solved by:
edso
Solved:
Last query:
Last reply:
Revision history for this message
Best edso (ed.so) said :
#1

On 22.06.2020 13:15, Lagoda wrote:
> New question #691453 on Duplicity:
> https://answers.launchpad.net/duplicity/+question/691453
>
> Hi,
> Sorry i don't find how to remove duplicity after i have installed using python like this :
> tar xaf duplicity-0.8.*.tar.gz
> cd duplicity-0.8.*/
> pip3 install -r requirements.txt
> python3 setup.py install
>
> I have try python3 setup.py uninstall or python3 setup.py remove but not work.
> The --help not have uninstall option
>
>
>

hey Lagoda,

afaik there is no uninstall routine as such in setup.px :(. you can record the files installed though and remove them manually which will equal an uninstallation see
  https://stackoverflow.com/questions/1550226/python-setup-py-uninstall

good luck ..ede/duply.net

Revision history for this message
Lagoda (florent-lagoda) said :
#2

Thanks edso, that solved my question.