91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用Python Pip的技巧有哪些

發布時間:2023-04-13 15:23:01 來源:億速云 閱讀:135 作者:iii 欄目:編程語言

這篇文章主要介紹了使用Python Pip的技巧有哪些的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇使用Python Pip的技巧有哪些文章都會有所收獲,下面我們一起來看看吧。

1.安裝 pip

從 Python 3.4 開始,pip 已經內置在 Python 中,因此無需再次安裝。

如果你的 Python 版本沒有 pip,可以使用以下兩種方法安裝它。

  • 在命令行輸入 easy_install pip,非常迅速。

  • 從以下網址下載 pip 安裝文件,然后將其提取到 Python 腳本目錄,并執行 python setup.py install 命令。

2.升級 pip

如果 pip 的版本太低,可以升級當前版本:pip install --upgrade pip 或 pip install -U pip。

$ pip install -U pip
Looking in indexes: https://pypi.python.org/simple
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 http://dist.repoze.org/zope2/2.10/simple
# 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: https://pyyaml.org/
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
PackageVersion Latest Type
---------- ------- ------ -----
docutils 0.15.20.18.1 wheel
PyYAML 5.4.1 6.0wheel
rsa4.7.2 4.8wheel
setuptools 56.0.062.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: https://pypi.python.org/simple
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

關于“使用Python Pip的技巧有哪些”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“使用Python Pip的技巧有哪些”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

资讯| 兰坪| 宽城| 松滋市| 布尔津县| 沙田区| 会理县| 凭祥市| 怀化市| 贵溪市| 元朗区| 洛宁县| 镇赉县| 临城县| 武鸣县| 梅河口市| 陆川县| 东丽区| 桓台县| 德昌县| 且末县| 唐海县| 荔浦县| 南丹县| 城口县| 西和县| 同心县| 股票| 甘肃省| 子长县| 清水县| 泸州市| 永城市| 东山县| 凤城市| 岳普湖县| 黄大仙区| 丰都县| 化德县| 宕昌县| 达拉特旗|