Use setup.py to install and uninstall python packages

  • 2020-04-02 13:15:53
  • OfStack

We use python setup.py install to install Install python package But how to uninstall it?

only Removed manually Installed files

You can use the following command


python setup.py install --record files.txt  Record the path to the installed file 
cat files.txt | xargs rm -rf   Delete these files 


Related articles: