From 3b0142cedcde39e4c2097ecd916a870a3ced5ec6 Mon Sep 17 00:00:00 2001 From: Vito Graffagnino Date: Tue, 8 Sep 2020 18:10:49 +0100 Subject: Added the relevent parts of the .config directory. Alss add ssh config --- vimwiki/Uninstall via setup.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 vimwiki/Uninstall via setup.py (limited to 'vimwiki/Uninstall via setup.py') diff --git a/vimwiki/Uninstall via setup.py b/vimwiki/Uninstall via setup.py new file mode 100644 index 0000000..2257200 --- /dev/null +++ b/vimwiki/Uninstall via setup.py @@ -0,0 +1,12 @@ + +To uninstall a python package which has been installed via `python setup.py install` +you have to remove all files manually. If you don't know which files were installed, +you can reinstall the package with the `--record` option to see what was included. +e.g. + +`python setup.py install --record list.txt` + +You can examine the list and then use xargs for the removal: + +`cat list.txt | xargs rm -rf` + -- cgit v1.2.3