Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (1.6k points)

I have installed a python package with python setup.py install.

How do I uninstall it?

1 Answer

0 votes
by (25.1k points)

Instead of using setup.py you should use pip install.

You need to remove all the files manually and then undo any changes done during the installation manually.

To record a list of installed files, you can use:

python setup.py install --record files.txt

Related questions

0 votes
1 answer
asked Oct 9, 2019 in Python by Sammy (47.6k points)
0 votes
2 answers
asked Jul 2, 2019 in Python by Sammy (47.6k points)
0 votes
1 answer

Browse Categories

...