1. pip檢視安裝列表
pip list
2. pip使用國內映象源
國內映象源有:
(1) 阿里雲
(2) 豆瓣
(3) 清華大學
(4) 中國科學技術大學
(5) 華中科技大學
臨時方法:在pip install後加上
-i 。
pip install -i [package name]
永久方法:在c:/user/s/下新增pip目錄,再新建檔案pip.ini。然後新增以下內容。
[global]
index-url =
[install]
trusted-host=mirrors.aliyun.com
see details at:
3. p
ip設定install timeout時間
issue: get error when execute "pip install matplotlib" to install module matplotlib
errormessage: socket.timeout: the read operation timed out
solution: give the default timeout value. eg. "pip
--default-timeout
=1000 install matplotlib"
see detail at:
4. pip安裝已有whl檔案
install existed whl file. use the command as below.
pip install d:\software\python_matplotlib\matplotlib-2.1.2-cp34-cp34m-win32.whl
pip 常用命令
以flask為例。1.安裝pip install flask 安裝 flask。pip install flask 1.0 安裝 1.0版本的flask pip install flask 1.0.tar.gz 從本地安裝flask pip install http www.com flask 1....
pip常用命令
常用命令 列出已安裝的包 pip freezeorpip list 匯出requirements.txt pip freeze 目錄 requirements.txt安裝包 pip install 包名 或pip install r requirements.txt 安裝1.9版本的django p...
pip常用命令
安裝 sudo easy install pip 列出已安裝的包 pip freeze or pip list 匯出requirements.txt pip install 包名 或 pip install r requirements.txt 通過使用 來指定版本,不寫則安裝最新版 require...