上篇講述了如何用distutils模組來建立分發包,那麼安裝了模組之後,怎麼來刪除呢,具體的步驟如下:
[root@ftp ansible]# ls -l /usr/share/kel1、 找到安裝檔案setup.py,執行並記錄,命令如下:-rw-r--r-- 1 root root 86 may 9 09:23 /usr/share/kel
[root@ftp ansible]# python setup.py install --record install.txt
running install
running build
running build_py
creating build
creating build/lib
creating build/lib/ansible
copying lib/ansible/__init__.py -> build/lib/ansible
running build_scripts
creating build/scripts-2.7
copying and adjusting bin/ansible -> build/scripts-2.7
changing mode of build/scripts-2.7/ansible from 644 to 755
running install_lib
copying build/lib/ansible/__init__.py -> /usr/local/python/lib/python2.7/site-packages/ansible
byte-compiling /usr/local/python/lib/python2.7/site-packages/ansible/__init__.py to __init__.pyc
running install_scripts
copying build/scripts-2.7/ansible -> /usr/local/python/bin
changing mode of /usr/local/python/bin/ansible to 755
running install_data
running install_egg_info
removing /usr/local/python/lib/python2.7/site-packages/ansible-1.0-py2.7.egg-info
writing /usr/local/python/lib/python2.7/site-packages/ansible-1.0-py2.7.egg-info
writing list of installed files to 'install.txt'
[root@ftp ansible]# cat install.txt |xargs rm -rf
[root@ftp ansible]# ls -l /usr/share/kel
ls: cannot access /usr/share/kel: no such file or directory
python setup.py install --record install.txt
2、執行刪除
cat install.txt |xargs rm -rf
然後就會發現,安裝的相關模組已經被刪除。
[root@ftp ansible]# cat install.txt/usr/local/python/lib/python2.7/site-packages/ansible/__init__.py
/usr/local/python/lib/python2.7/site-packages/ansible/__init__.pyc
/usr/local/python/bin/ansible
/usr/share/kel
/usr/local/python/lib/python2.7/site-packages/ansible-1.0-py2.7.egg-info
開啟install.txt,發現其中都是安裝的位置和檔案,從而執行刪除,即可將相應的模組進行刪除。
python使用pip安裝刪除模組
1 使用pip安裝模組 cmd 輸入pip install numpy 進行安裝numpy模組 是執行速度非常快的數學庫,主要用於陣列計算 2 使用pip刪除模組 cmd 輸入 pip uninstall numpy 返回 proceed y n 輸入 y 3 使用pip檢視已安裝模組 cmd 輸入...
Python 刪除已安裝的模組或包
方法一 使用pip 安裝pip wget python get pip.py 刪除指定的模組或者包,在命令提示符cmd下用如下命令 pip uninstall 如 pip uninstall pycurl 方法二 手工刪除 去python的第三方模組或包的存放位置進行手工刪除檔案和資料夾,然後刪除e...
python模組安裝
教程 python中的內建的模組 和第三方的模組 python中,想要安裝第三方安裝包,即third library,package等,對於熟悉的人來說,很簡單。但是對於新手,至少對於之前的我,很難,往往只是安裝乙個很小的包,都被搞得一頭霧水。現在略微清楚了大概邏輯了。1 setup.pyinsta...