首页 > 编程语言 >python / lib

python / lib

时间:2023-02-27 21:24:15浏览次数:35  
标签:kB 00 https lib mirrors python pypi aliyun

s

python正则表达式:re

python操作系统库:os

python爬虫库:request库

C:\Users\lindows>pip install requests -i https://mirrors.aliyun.com/pypi/simple
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Collecting requests
Downloading https://mirrors.aliyun.com/pypi/packages/d2/f4/274d1dbe96b41cf4e0efb70cbced278ffd61b5c7bb70338b62af94ccb25b/requests-2.28.2-py3-none-any.whl (62 kB)
---------------------------------------- 62.8/62.8 kB 372.9 kB/s eta 0:00:00
Collecting charset-normalizer<4,>=2
Downloading https://mirrors.aliyun.com/pypi/packages/84/0e/5965dd90991e4f2588718b865115a78c8b040193ac3676f757b7fb6af9d0/charset_normalizer-3.0.1-cp311-cp311-win32.whl (88 kB)
---------------------------------------- 88.6/88.6 kB 359.4 kB/s eta 0:00:00
Collecting idna<4,>=2.5
Downloading https://mirrors.aliyun.com/pypi/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl (61 kB)
---------------------------------------- 61.5/61.5 kB 470.6 kB/s eta 0:00:00
Collecting urllib3<1.27,>=1.21.1
Downloading https://mirrors.aliyun.com/pypi/packages/fe/ca/466766e20b767ddb9b951202542310cba37ea5f2d792dae7589f1741af58/urllib3-1.26.14-py2.py3-none-any.whl (140 kB)
---------------------------------------- 140.6/140.6 kB 490.2 kB/s eta 0:00:00
Collecting certifi>=2017.4.17
Downloading https://mirrors.aliyun.com/pypi/packages/71/4c/3db2b8021bd6f2f0ceb0e088d6b2d49147671f25832fb17970e9b583d742/certifi-2022.12.7-py3-none-any.whl (155 kB)
---------------------------------------- 155.3/155.3 kB 488.3 kB/s eta 0:00:00
Installing collected packages: charset-normalizer, urllib3, idna, certifi, requests
Successfully installed certifi-2022.12.7 charset-normalizer-3.0.1 idna-3.4 requests-2.28.2 urllib3-1.26.14

[notice] A new release of pip available: 22.2.2 -> 23.0.1
[notice] To update, run: python.exe -m pip install --upgrade pip

C:\Users\lindows>

 

 

 

end

标签:kB,00,https,lib,mirrors,python,pypi,aliyun
From: https://www.cnblogs.com/lindows/p/17161948.html

相关文章

  • Python中logging模块用法
    一、低配logging日志总共分为以下五个级别,这个五个级别自下而上进行匹配debug-->info-->warning-->error-->critical,默认最低级别为warning级别。1.v1importlogging......
  • python爬虫-request模块
    1.requests中的请求方法  HTTP请求方法:requests.get(url,params=None,**kwargs)#GET请求requests.post(url,data=None,json=None,**kwa......
  • 如何选择Python与C++之间的胶水:Boost.Python,Cython,pybind11,SWIG
    Python作为一门胶水语言,它与C/C++之间的兼容性(Interoperability)我认为是它相比其他动态语言脱颖而出的最大原因。Python原生支持的是与C语言的接口,Python的发行版自带有Pyt......
  • ChatGPT: python3 查找在列表1中而不再列表2的项目
    A:f1_urls=['a','b']f2_urls=['a','c']python3中获取存在于f1_urls而不在f2_urls的项目Q:f1_urls=['a','b']f2_urls=['a','c']#将列表转换为集......
  • python用turtle画出给定图片的图像
    python用turtle画出给定图片的图像、校徽等复杂图像都可以需要:1.要画的图片2.安装好cv和turtle打开python文件,把想画的图片放到和py文件同目录,代码中默认图片名字为1.xxxxx......
  • python算法基础
    一、简介定义和特征定义:算法(Algorithm)是指解题方案的准确而完整的描述,是一系列解决问题的清晰指令,算法代表着用系统的方法描述解决问题的策略机制。也就是说,能够对一定......
  • python通过snmp获取交换机端口状态
    frompysnmp.entity.rfc3413.onelinerimportcmdgenclassNumberStatus:def__int__(self,host):self.host=hostdefwalk(self,dswitch,comm......
  • python -- PyQt5(designer)安装详细教程
    摘自:https://blog.csdn.net/weixin_64338372/article/details/128111818先展示一下安装好后的效果如下:  PyQt5基本教程大全​​​​​​​http://t.csdn.cn/L50jl......
  • centos7中 /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory
     001、安装strcuture遇到如下问题:[root@PC1console]#./structure-bash:./structure:/lib/ld-linux.so.2:badELFinterpreter:Nosuchfileordirectory ......
  • 【Python】判断字符串输入合法化
    Python判断字符串输入合法化​​只包含数字​​​​包含数字​​​​只包含中文​​​​包含中文​​​​只包含字母​​​​包含字母​​只包含数字判断字符串是否只包含数......