Home  >  Article  >  Backend Development  >  How to delete the python installation package

How to delete the python installation package

藏色散人
藏色散人Original
2019-07-01 11:23:525440browse

How to delete the python installation package

How to delete the python installation package

Python installation module, usually pip or python setup.py install.. and vice versa To uninstall, generally delete the module folder directly, or delete it automatically through record, as follows.

1. Deletion of source code package installation

We use python setup.py install to install the python package, but how to uninstall it?

Only To manually delete installed files, you can use the following command:

Deletion under Linux:

# python setup.py install --record files.txt Record the files after installation Path

# cat files.txt | xargs rm -rf Delete these files

Delete under windows:

C:\selenium-2.43 .0>python setup.py install --record ./record.txt

C:\selenium-2.43.0>FOR /F %f in (record.txt) DO del %f

2. Deletion of easy_install installation

The following method can be found on Douban

If you have replaced a package with another version, then you can just delete the package( s) you don't need by deleting the PackageName-versioninfo.egg file or directory (found in the installation directory).

If you want to delete the currently installed version of a package (or all versions of a package), you should first run:

easy_install -m PackageName

This will ensure that Python doesn't continue to search for a package you're planning to remove. After you've done this, you can safely delete the .egg files or directories, along with any scripts you wish to remove.

Just run: easy_install -m PackageName

After that, you are in C:\Python25\Lib\site-packages\, delete it The module folder would be just fine.

Related recommendations: "Python Tutorial"

The above is the detailed content of How to delete the python installation package. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn