X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=_site%2Ftechnical-notes%2Fsetup.py-uninstall.html;h=625f01ee4f381dbd2995e77976841ecbcde5c152;hb=refs%2Fheads%2Fmaster;hp=5c870181e3cf91d4bb39c812d0e7ba1a9c668fa9;hpb=001299deacd7b5d230416aeda612ca7b40e13ffc;p=iankelling.org diff --git a/_site/technical-notes/setup.py-uninstall.html b/_site/technical-notes/setup.py-uninstall.html index 5c87018..625f01e 100644 --- a/_site/technical-notes/setup.py-uninstall.html +++ b/_site/technical-notes/setup.py-uninstall.html @@ -30,14 +30,14 @@

Unix-like

Install over the existing installation with the same sources, recording installed files, then delete them.

-
sudo python setup.py install --record files.txt
+
sudo python setup.py install --record files.txt
 # inspect files.txt to make sure it looks ok. Then in bash:
 tr '\n' '\0' < files.txt | xargs -0 sudo rm -f --
 

Windows

Install on top of the existing installation with a windows installer, then add-remove programs to uninstall.

-
python setup.py bdist_wininst
+
python setup.py bdist_wininst
 dist/foo-1.0.win32.exe
 

Use other methods which fully support uninstall when available