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 (0.6.9)
pywin32 (219)
selenium (2.45.0)
sendkeys (0.3)
setuptools (0.6c11)
2. 列出已過期的package
c:\python27\scripts>pip list --outdated
pip (current: 1.5.6 latest: 6.0.8)
py2exe (current: 0.6.9 latest: 0.9.2.2)
could not find any downloads that satisfy the requirement pywin32
some externally hosted files were ignored (use --allow-external pywin32 to allow
setuptools (current: 0.6c11 latest: 14.0)
could not find any downloads that satisfy the requirement pil
some externally hosted files were ignored (use --allow-external pil to allow).
3. 安裝或公升級某package的最新版本
c:\python27\scripts>pip install --upgrade selenium 或 pip install -u selenium
downloading/unpacking selenium from
lenium/selenium-2.45.0.tar.gz#md5=120813af730474a62a5a13058da4f602
elenium\setup.py) egg_info for package selenium
installing collected packages: selenium
found existing installation: selenium 2.44.0
uninstalling selenium:
successfully uninstalled selenium
running setup.py install for selenium
successfully installed selenium
cleaning up...
4.安裝特定版本的包
安裝特定版本的package,通過使用==, >=, <=, >,
pip install robotframework==2.9.2
pip install robotframework<3.0
5. 解除安裝
c:\python27\scripts>pip uninstall somepackage
6. 檢視某個庫的資訊:
c:\python27\scripts>pip show selenium
metadata-version: 1.1
name: selenium
version: 2.47.0
summary: python bindings for selenium
home-page:
author: unknown
author-email: unknown
license: unknown
location: c:\python27\lib\site-packages
requires:
Python入門 pip安裝
安裝pip命令 python m pip install upgrade pip如果失敗可能是環境變數問題,見 安裝python,配置環境變數 模組名稱 示例 pip install i https pip install 第三方庫 安裝第三方庫 pip uninstall 第三方庫 解除安裝第三方...
python怎麼安裝pip?
python 2.7.9 或 python 3.4 以上版本都自帶 pip 工具。可以通過以下命令來判斷是否已安裝 pip version如果還未安裝,則可以使用以下方法來安裝 sudo python get pip.py 執行安裝指令碼注意 用哪個版本的 python 執行安裝指令碼,pip 就被...
python怎麼安裝pip
python 2.7.9 或 python 3.4 以上版本都自帶 pip 工具。可以通過以下命令來判斷是否已安裝 pip version如果還未安裝,則可以使用以下方法來安裝 sudo python get pip.py 執行安裝指令碼 注意 用哪個版本的 python 執行安裝指令碼,pip 就...