使用 Python Pip 的 10 個技巧
眾所周知,pip 可以安裝、更新、解除安裝 Python 的第三方庫,非常方便。你們中的許多人可能已經使用 pip 很長時間了,但不清楚它有哪些還不錯的功能。希望我今天分享的技巧能讓你從 Python pip 中受益。
Python pip
讓我們從 Python 語言開始。Python 之所以受歡迎,不僅因為它易於學習,還因為它擁有成千上萬的(寶)庫。
這些庫相當於已經整合的工具,只要安裝了就可以在 Python 中使用。它們可以處理各種各樣的問題,而無需你重新造輪子,而且隨著社群的不斷更新和維護,一些庫越來越強大,幾乎可以與企業級應用程式媲美。
那麼如何下載安裝這些工具庫呢?它們被放置在一個名為 PyPi(Python 包索引)的統一“倉庫”中,所有庫安裝都會來源於該倉庫。
有了倉庫之後,還需要一個管理員,pip 就是這樣一個角色。pip 從 PyPi 中取出庫並將其安裝到 Python 中。它還可以管理已安裝的庫,如更新、檢視、搜尋、解除安裝等。
下面總結了 10 個使用 pip 的常識和技巧,供大家參考。
1.安裝 pip
從 Python 3.4 開始,pip 已經內建在 Python 中,因此無需再次安裝。
如果你的 Python 版本沒有 pip,可以使用以下兩種方法安裝它。
-
在命令列輸入 easy_install pip,非常迅速。
-
從以下網址下載 pip 安裝檔案,然後將其提取到 Python 指令碼目錄,並執行 python setup.py install 命令。
pip 的下載地址:
但是,如果您還在使用 Python3.4 及更早版本,請升級到 Python 的最新穩定版本()。否則,您每天都會增加更多的技術債務。
2.升級 pip
如果 pip 的版本太低,可以升級當前版本:pip install --upgrade pip 或 pip install -U pip。
$ pip install -U pip
Looking
in indexes:
Requirement already satisfied: pip
in ./
test/lib/python3.8/site-packages (21.1.1)
Collecting pip
Using cached pip-22.0.4-py3-none-any.whl (2.1 MB)
Installing collected packages: pip
Attempting uninstall: pip
Found existing installation: pip 21.1.1
Uninstalling pip-21.1.1:
Successfully uninstalled pip-21.1.1
Successfully installed pip-22.0.4
3.安裝庫
使用 pip 安裝第三方庫,可以執行如下語句:pip install package_name
指定包版本:pip install package_name==1.1.2
比如,我要安裝 3.4.1 版本的 matplotlib:pip install matplotlib==3.4.1
4. 庫的批次安裝
如果一個專案需要安裝很多庫,可以批次安裝:pip install -r requirements.txt
檔案的內容格式如下:
# This is a comment
# Specify a diffrent index
-i
# Package with versions
tensorflow==2.3.1
uvicorn==0.12.2
fastapi==0.63.0
pkg1
pkg2
pkg3>=1.0,<=2.0
# It is possible to refer to specific local distribution paths.
./downloads/numpy-1.9.2-cp34-none-win32.whl
# It is possible to refer to other requirement files or constraints files.
-r other-requirements.txt
-c constraints.txt
# It is possible to specify requirements as plain names.
pytest
pytest-cov
beautifulsoup4
5.解除安裝和升級包
已安裝的庫可以再次解除安裝:$ pip uninstall package_name
當前庫的版本升級:
$ pip install --upgrade package_name
或
$ pip install -U package_name
6. 凍結 Python pip 依賴
有時您想輸出當前環境中所有已安裝的包,或生成一個需求檔案,然後透過該檔案在另一個環境中進行安裝。您可以使用 pip freeze 命令:
# List packages
$ pip freeze
docutils==0.11
Jinja2==2.7.2
MarkupSafe==0.19
Pygments==1.6
Sphinx==1.2.2
# Generate requirements.txt file
$ pip freeze > requirements.txt
請注意,包會以排序順序列出(不區分大小寫)。如果您只想列出非全域性安裝的軟體包,請使用 -l/--local。
7.檢視庫資訊
您可以使用 pip show -f package_name 列出包資訊:
$ pip show -f pyyaml
Name: PyYAML
Version: 5.4.1
Summary: YAML parser and emitter
for Python
Home-page:
Author: Kirill Simonov
Author-email: xi@resolvent.net
License: MIT
Location: /private/tmp/
test/lib/python3.8/site-packages
Requires:
Required-by: awscli
Files:
PyYAML-5.4.1.dist-info/INSTALLER
PyYAML-5.4.1.dist-info/LICENSE
PyYAML-5.4.1.dist-info/METADATA
PyYAML-5.4.1.dist-info/RECORD
PyYAML-5.4.1.dist-info/WHEEL
PyYAML-5.4.1.dist-info/top_level.txt
...
8.檢視需要升級的庫
在當前安裝的庫中,檢視有哪些庫需要進行版本升級:
$ pip list -o
Package Version Latest Type
---------- ------- ------ -----
docutils 0.15.2 0.18.1 wheel
PyYAML 5.4.1 6.0 wheel
rsa 4.7.2 4.8 wheel
setuptools 56.0.0 62.1.0 wheel
9. 檢查相容性問題
驗證已安裝的庫的相容性依賴,你可以使用 pip check package-name:
$ pip check awscli
No broken requirements found.
如果您不指定包名稱,將檢查所有包的相容性。
$ pip check
pyramid 1.5.2 requires WebOb,
which is not installed.
10. 將庫下載到本地
將庫下載到本地的指定位置並以 whl 格式儲存:pip download package_name -d "path"
$ pip download PyYAML -d
"/tmp/"
Looking
in indexes:
Collecting PyYAML
Downloading PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl (192 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 192.2/192.2 KB 4.7 MB/s eta 0:00:00
Saved ./PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl
Successfully downloaded PyYAML
$ ls /tmp/PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl
/tmp/PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl
連結:https://blog.csdn.net/m0_59485658/article/details/124739832
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70013542/viewspace-2945676/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 非常好的pip的15個使用小技巧
- python之pip的使用Python
- python的pip使用阿里源Python阿里
- Python中使用字典的幾個小技巧Python
- 總結十個Python 字典用法的使用技巧Python
- pip 的使用
- 10個大大提升MySQL效率的使用技巧MySql
- JavaScript 中 try...catch 的 10 個使用技巧JavaScript
- 6個你可能從未使用過的Python技巧!Python
- Python使用技巧Python
- python技巧 使用值來排序一個字典Python排序
- Python 庫/模組的pip安裝和IPython的使用Python
- 讓pip使用python3而不是python2Python
- 能讓你受益匪淺的10個css使用技巧CSS
- 10個很棒的 JavaScript 字串技巧JavaScript字串
- 10個必須掌握的PHP關聯陣列使用技巧PHP陣列
- Python 包管理 pip 安裝使用清華源Python
- python:關於pipPython
- Python pip 源配置Python
- Python pip換源Python
- python配置pip映象Python
- python如何配置pipPython
- pip使用大全
- 8個關於Python的小技巧Python
- 五個最有用的Python技巧 - dannysteenmanPython
- Python 工匠:使用裝飾器的技巧Python
- daterangepicker的個性化使用技巧
- Linux安裝Python3後,如何使用pip命令LinuxPython
- 乾貨技巧|關於Redis的16個使用技巧Redis
- 30個Python常用小技巧Python
- 11個Python迴圈技巧Python
- python的pip快速安裝程式碼Python
- python 使用pip安裝使用國內映象加速下載安裝包的方法Python
- 10個CSS技巧,極大提升使用者體驗CSS
- 提高Python執行效率的5個技巧!Python
- 使用pip管理庫
- laravel 250個使用技巧Laravel
- Python 工匠:使用數字與字串的技巧Python字串