這篇文章主要介紹了刪除python安裝包的方法,具有一定借鑒價(jià)值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
創(chuàng)新互聯(lián)始終堅(jiān)持【策劃先行,效果至上】的經(jīng)營(yíng)理念,通過(guò)多達(dá)10多年累計(jì)超上千家客戶的網(wǎng)站建設(shè)總結(jié)了一套系統(tǒng)有效的網(wǎng)絡(luò)營(yíng)銷推廣解決方案,現(xiàn)已廣泛運(yùn)用于各行各業(yè)的客戶,其中包括:成都木托盤(pán)等企業(yè),備受客戶表?yè)P(yáng)。
怎么刪除python安裝包
python 安裝模塊,一般pip 或者 python setup.py install..反之 卸載的話,一般是直接刪除module 文件夾,或者通過(guò)record記錄去自動(dòng)刪除,具體如下。
一、源碼包安裝的刪除
我們使用 python setup.py install 來(lái)安裝python包,但是如何卸載呢?
只能手動(dòng)刪除安裝的文件,可以使用如下命令:
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.
就是運(yùn)行:easy_install -m PackageName
完了,你在C:\Python25\Lib\site-packages\下,刪除模塊文件夾就好了。
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享刪除python安裝包的方法內(nèi)容對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,遇到問(wèn)題就找創(chuàng)新互聯(lián),詳細(xì)的解決方法等著你來(lái)學(xué)習(xí)!