blob: 1951c7830e6dae3a1a24b22135a65348cba1c63e (
plain)
1
2
3
4
5
6
7
8
9
10
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`
|