1、pip安裝軟體
# pip install somepackage
2、pip檢視已安裝的軟體
# pip show --files somepackage
3、pip檢查哪些軟體需要更新
# pip list --outdated
4、pip公升級軟體
# pip install --upgrade somepackage
5、pip解除安裝軟體
#pip uninstall somepackage
6、本地安裝
#pip install *.whl 直接在pip install命令後新增whl包的全路徑名就能本地安裝成功了
pip --help
usage:
pip[options]
commands:
install 安裝包.
uninstall 解除安裝包.
freeze 按著一定格式輸出已安裝包列表
list 列出已安裝包.
show 顯示包詳細資訊.
search 搜尋包,類似yum裡的search.
wheel build wheels from your requirements.
zip 不推薦.zip individual packages.
unzip 不推薦.unzip individual packages.
bundle 不推薦.create pybundles.
help 當前幫助.
general options:
-h,--help 顯示幫助.
-v,--verbose 更多的輸出,最多可以使用3次
-v,--version 現實版本資訊然後退出.
-q,--quiet 最少的輸出.
--log-file 覆蓋的方式記錄verbose錯誤日誌,預設檔案:/root/.pip/pip.log
--log 不覆蓋記錄verbose輸出的日誌.
--proxy specifyaproxy inthe form[user:passwd@]proxy.server:port.
--timeout 連線超時時間(預設15秒).
--exists-action defaultaction whenapath already exists:(s)witch,(i)gnore,(w)ipe,(b)ackup.
--cert 證書.
1、pip安裝軟體
# pip install somepackage
2、pip檢視已安裝的軟體
# pip show --files somepackage
3、pip檢查哪些軟體需要更新
# pip list --outdated
4、pip公升級軟體
# pip install --upgrade somepackage
5、pip解除安裝軟體
#pip uninstall somepackage
6、本地安裝
#pip install *.whl 直接在pip install命令後新增whl包的全路徑名就能本地安裝成功了
pip --help
usage:
pip[options]
commands:
install 安裝包.
uninstall 解除安裝包.
freeze 按著一定格式輸出已安裝包列表
list 列出已安裝包.
show 顯示包詳細資訊.
search 搜尋包,類似yum裡的search.
wheel build wheels from your requirements.
zip 不推薦.zip individual packages.
unzip 不推薦.unzip individual packages.
bundle 不推薦.create pybundles.
help 當前幫助.
general options:
-h,--help 顯示幫助.
-v,--verbose 更多的輸出,最多可以使用3次
-v,--version 現實版本資訊然後退出.
-q,--quiet 最少的輸出.
--log-file 覆蓋的方式記錄verbose錯誤日誌,預設檔案:/root/.pip/pip.log
--log 不覆蓋記錄verbose輸出的日誌.
--proxy specifyaproxy inthe form[user:passwd@]proxy.server:port.
--timeout 連線超時時間(預設15秒).
--exists-action defaultaction whenapath already exists:(s)witch,(i)gnore,(w)ipe,(b)ackup.
--cert 證書.
pip命令詳解
格式 pip install xx列出已安裝的包 pip freeze or pip list匯出requirements.txt pip freeze 目錄 requirements.txt安裝本地安裝包 pip install 目錄 檔名 pip install no index f 目錄 包名...
python 安裝pip 命令 pip 安裝命令
pip官網文件 若沒有將c python27 scripts加入到path環境變數,可以在c python27 scripts目錄下執行pip命令。常用命令 1.列出已安裝的package c python27 scripts pip list pil 1.1.7 pip 1.5.6 py2exe ...
pip 安裝使用詳解
pip類似redhat裡面的yum,安裝python包非常方便。本節詳細介紹pip的安裝 以及使用方法。wget no check certificate 1.2 pip安裝 tar xzvf pip 1.5.4.tar.gz cd pip 1.5.4 python setup.py install...