python pip实用手册

Posted 一口吃不成胖子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python pip实用手册相关的知识,希望对你有一定的参考价值。

pip是python的包安装工具,类似于JavaScript的npm和yarn

设置国内源

国内源

偶尔一次使用国内源

pip3 install 包名 -i https://pypi.tuna.tsinghua.edu.cn/simple

设置全局源

Linux(未完待续)

mkdir ~/.pip
vim ~/.pip/pip.conf

windows

在目录 C:\\Users\\XXX\\AppData\\Roaming\\下新建pip文件夹(有pip文件夹不用建),进入pip文件夹,新建pip.ini文件,录入如下内容并保存

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
global.timeout = 6000

基础命令

安装包

pip install 包名 # 最新版本
pip install 包名==1.0.4 # 指定版本

卸载包

pip uninstall 包名

搜索包

pip search 包名

显示安装包信息

pip show 包名
Name: setuptools
Version: 65.5.0
Summary: Easily download, build, install, upgrade, and uninstall Python packages
Home-page: https://github.com/pypa/setuptools
Author: Python Packaging Authority
Author-email: distutils-sig@python.org
License:
Location: C:\\Users\\Jarry\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages #包安装路径
Requires:
Required-by:

显示详细信息

pip show -f 包名

列出已安装的包

pip list

查看可以升级的包

pip list -o

以上是关于python pip实用手册的主要内容,如果未能解决你的问题,请参考以下文章

Python 实用技巧

Python 版本 >= 3.4 不提供有效的 PIP 实用程序。后面好像不能加了

subprocess实用手册

python 用于将linux手册页移植到dash.app的实用程序

不看后悔系列—小白手册超实用Python入门指南!包括学习思维导图

1.2使用pip安装Python包