diff options
Diffstat (limited to 'vimwiki/Uninstall via setup.py')
| -rw-r--r-- | vimwiki/Uninstall via setup.py | 12 |
1 files changed, 12 insertions, 0 deletions
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` + |
