您好,登錄后才能下訂單哦!
這篇文章主要介紹了刪除python安裝包的方法,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
怎么刪除python安裝包
python 安裝模塊,一般pip 或者 python setup.py install..反之 卸載的話,一般是直接刪除module 文件夾,或者通過record記錄去自動刪除,具體如下。
一、源碼包安裝的刪除
我們使用 python setup.py install 來安裝python包,但是如何卸載呢?
只能手動刪除安裝的文件,可以使用如下命令:
linux下的刪除:
# python setup.py install --record files.txt 記錄安裝后文件的路徑
# cat files.txt | xargs rm -rf 刪除這些文件
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
二、easy_install 安裝的刪除
以下從豆瓣上看到方法
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.
就是運行:easy_install -m PackageName
完了,你在C:\Python25\Lib\site-packages\下,刪除模塊文件夾就好了。
感謝你能夠認真閱讀完這篇文章,希望小編分享刪除python安裝包的方法內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。