1. 程式人生 > >Python 中pip安裝第三方庫的心得體會

Python 中pip安裝第三方庫的心得體會

一、pip的簡述

pip是Python的內建命令,需通過命令執行。但這裡不能再IDLE環境下執行pip程式。Python3.5及其以上版本中自帶了pip工具,只需呼叫即可。

二、操作步驟:

前提條件:在Python所在的盤

首先開啟以互動式方式開啟Python,(cmd);

然後程式碼

C:\Users\freel>cd\>Sripts #這裡的Scripts是包含了pip.exe的預設檔案的。

C:\>pip -h

結果如下:

Usage:
  pip <command> [options]

Commands:
  install                     Install packages.
  download                    Download packages.
  uninstall                   Uninstall packages.
  freeze                      Output installed packages in requirements format.
  list                        List installed packages.
  show                        Show information about installed packages.
  search                      Search PyPI for packages.
  wheel                       Build wheels from your requirements.
  hash                        Compute hashes of package archives.
  completion                  A helper command used for command completion
  help                        Show help for commands.

General Options:
  -h, --help                  Show help.
  --isolated                  Run pip in an isolated mode, ignoring
                              environment variables and user configuration.
  -v, --verbose               Give more output. Option is additive, and can be
                              used up to 3 times.
  -V, --version               Show version and exit.
  -q, --quiet                 Give less output.
  --log <path>                Path to a verbose appending log.
  --proxy <proxy>             Specify a proxy in the form
                              [user:
[email protected]
]proxy.server:port. --retries <retries> Maximum number of retries each connection should attempt (default 5 times). --timeout <sec> Set the socket timeout (default 15 seconds). --exists-action <action> Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup. --trusted-host <hostname> Mark this host as trusted, even though it does not have valid or any HTTPS. --cert <path> Path to alternate CA bundle. --client-cert <path> Path to SSL client certificate, a single file containing the private key and the certificate in PEM format. --cache-dir <dir> Store the cache data in <dir>. --no-cache-dir Disable the cache. --disable-pip-version-check Don't periodically check PyPI to determine whether a new version of pip is available for download. Implied with --no-index.
這是呼叫之後,用pip安裝第三方庫jieba的程式碼:
C:\>pip install jieba
Collecting jieba
  Downloading jieba-0.39.zip (7.3MB)
    4% |█▌                              | 337kB 24kB/s eta 0:04:48
耐心等待,自動安裝。

相關推薦

Python pip安裝第三方心得體會

一、pip的簡述 pip是Python的內建命令,需通過命令執行。但這裡不能再IDLE環境下執行pip程式。Python3.5及其以上版本中自帶了pip工具,只需呼叫即可。 二、操作步驟: 前提條件:在Python所在的盤 首先開啟以互動式方式開啟Python,(cmd);

Pythonpip 安裝第三方,速度很慢的解決辦法

場景 想安裝 Django 庫 在 cmd 敲入命令 pip install Django 但是發現下載安裝檔案非常慢 原因:實質訪問的下載網站是 https://pypi.Python.org/simple/ 這是一個國外網站,速度比較慢   解決辦法 使用國

【已解決】pythonpip安裝第三方連結超時

在python中利用pip直接下載第三方庫進行安裝時發生瞭如圖所示bug(注:第三方庫連線超時): 原因是連線超時,所以需要自己設定安裝源,即:通過什麼映象安裝。 解決方法: 在 pip命

Python利用pip安裝第三方函式

Python版本為2.7.7,官網下載地址點選開啟連結,下載完成點選安裝,預設裝在C盤,安裝時候,選擇將python.exe路徑載入到環境變數中; 利用pip安裝Python第三方庫函式比較簡單,下面

關於pip安裝第三方,但pycharm卻無法識別的問題;以及pycharm安裝第三方的方法解析

問題具體描述:   在cmd控制檯 pip install xxxx 後並顯示安裝成功後,並且嘗試用cmd 的python 中import xxxx ,沒有顯示異常,說明這個庫是安裝成功了的。(這裡

Python Pip 安裝第三方

第一種方法  在cmd安裝 使用pip install requests  如下圖所示 (注意)如果有多個版本  安裝選擇環境變數下的預設版本  如本人的 是3.5  但是我也安裝有2.7版本 安裝完成如下圖所示: 如何檢視 是否已安裝成功  在 Python安裝路徑

關於pip安裝第三方以及pycharm匯入第三方的問題

pip安裝的話,找到自己安裝python的路徑,在安裝路徑下會有一個資料夾,比如我的安裝路徑是c盤我是預設安裝路徑,在裡面有一個python36資料夾。哦對了,你們安裝python的時候,我的是3.6版本,在安裝介面記得吧add path這個選項勾上,這是幫你自動新增路徑。

Python常用的第三方

Python中常用的第三方庫 庫名 用途 numpy n維資料表示和運算 matplotlib 二維資料視覺化 numpy

PIP安裝第三方報錯SSL: CERTIFICATE_VERIFY_FAILED

今天在安裝一個第三方庫時報如下錯誤 pip install --upgrade baostock Could not fetch URL https://pypi.org/simple/baostock/: There was a problem confi rming

Pythonpip安裝報錯Unable to create process using '....'

因為我本人在電腦上安裝了python2和python3,所以在安裝的時候,把兩個python的安裝目錄都安裝到G盤了。然後兩個python的執行檔案分別改成了 python2.exe 和  python3.exe  。這才是導致出現錯誤的具體原因。 因為我改了檔名,而pip

python】離線安裝第三方

Anaconda 搜尋bz2安裝包: https://anaconda.org/ 某些以-C指定源安裝的包可能需要登陸 下載bz2檔案並執行命令: conda install --use-local *.bz2 pip 搜尋whl安裝包:https://pypi.o

pythonpip 安裝、升級、升級固定的包

1、pip下載安裝1.1 pip下載1.2  Linux安裝pip# tar -xzvf pip-1.5.4.tar.gz 解壓 # cd pip-1.5.4 進入解壓檔案 # python setup.py install

python和anacoda安裝第三方的位置

三方 第三方 安裝 info width idt lis nbsp 安裝第三方 查看已安裝庫及版本號,命令行pip list 安裝第三方庫位置: python和anacoda安裝第三方庫的位置

Python 安裝第三方常見問題總結

python 安裝 denied all out perm bsp step 疑問 三方庫 1.安裝某個庫時,例如 pip install tinify 出現Permission denied時,在安裝命令的最前面添加sudo 例如: sudo pip install ti

Python pip包管理器安裝第三方超時解決方案

一、國內映象安裝 使用方法:pip install --映象網站 第三方庫名   二、映象網站 http://pypi.douban.com/simple/ 豆瓣http://mirrors.aliyun.com/pypi/simple/ 阿里 http://pypi.hustuniq

學會了 pythonpip方法安裝第三方

for clas 復制 extern esc 輸入 tran boot nload 超級開心啊!!!!!!!!!!!!! win10 打開cmd Installing with get-pip.py To install pip, securely download

安裝第三方 報錯Python version 2.7 required, which was not found in the registry

try 三方庫 64位 req not 安裝 window 是我 found 我的Windows 系統是64位 這個問題有人說是註冊表沒有 ,手動註冊了一下就好了,但是我註冊的時候運行報錯。 那麽我的做法是: 刪掉本機所有安裝過得python , 1、 先進入控制面板,刪除

pythonpip安裝

python pip pip與linux中的yum非常類似,下載、安裝軟件包並解決依賴問題。安裝C:\Python33\Scripts>easy_install.exe pip Searching for pip Best match: pip 9.0.1 Processing pip-9.0.

安裝第三方出現 Python version 2.7 required, which was not found in the registry

prefix another odin light admin urn utf n! .py 安裝第三方庫出現 Python version 2.7 required, which was not found in the registry 建立一個文件 register.

python如何安裝第三方

lin ces 找到 pip 但是 project net cmd fun 1、python集成開發環境pycharm如何安裝第三方庫 http://blog.csdn.net/qiannianguji01/article/details/50397046 有的時候安裝