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.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 vimwiki/Uninstall via setup.py.md (limited to 'vimwiki/Uninstall via setup.py.md') diff --git a/vimwiki/Uninstall via setup.py.md b/vimwiki/Uninstall via setup.py.md new file mode 100644 index 0000000..1951c78 --- /dev/null +++ b/vimwiki/Uninstall via setup.py.md @@ -0,0 +1,11 @@ + +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