summaryrefslogtreecommitdiff
path: root/vimwiki/Uninstall via setup.py
blob: 22572004c05154ce20930d5b9f0f58b8d00a2890 (plain)
1
2
3
4
5
6
7
8
9
10
11
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`