共计 1422 个字符,预计需要花费 4 分钟才能阅读完成。
一、💥参考链接💥
阿里巴巴开源镜像站 -OPSX 镜像站 - 阿里云开发者社区 (aliyun.com)
pypi 镜像 -pypi 下载地址 -pypi 装置教程 - 阿里巴巴开源镜像站 (aliyun.com)
https://pypi.org/
二、💬PyPI 镜像简介💬
PyPI (Python Package Index) 是 Python 编程语言的软件存储库。开发者能够通过 PyPI 查找和装置由 Python 社区开发和共享的软件,也能够将本人开发的库上传至 PyPI。
下载地址:https://mirrors.aliyun.com/pypi/
三、🌈PyPI 镜像配置办法🌈
默认状况下 pip 应用的是国外的镜像,在下载的时候速度十分慢,本文咱们介绍应用阿里云的镜像源源,地址为:https://mirrors.aliyun.com/pypi/
Windows 零碎下应用
1️⃣ 关上运行框,输出:==%APPDATA%==
2️⃣ 按回车跳转进入此目录,并新建一个名为 pip 文件夹
3️⃣ 在 pip 文件夹内创立 pip.ini 文件
4️⃣ 在 pip.ini 文件夹内填写以下配置信息
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
5️⃣ 测试应用
C:\Users\xybdiy>pip install some-package
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple/
Collecting some-package
Downloading https://mirrors.aliyun.com/pypi/packages/e7/a2/d318a685319c3801db1ae0002fc8e095663a55546c62a6e30d9d0fc3289b/some-package-0.1.zip (2.8 kB)
Preparing metadata (setup.py) ... done
Using legacy 'setup.py install' for some-package, since package 'wheel' is not installed.
Installing collected packages: some-package
Running setup.py install for some-package ... done
Successfully installed some-package-0.1
C:\Users\xybdiy>pip list
Package Version
--------------- -------
cffi 1.15.0
cycler 0.11.0
fonttools 4.28.3
kiwisolver 1.3.2
numpy 1.21.4
packaging 21.3
Pillow 8.4.0
pip 21.3.1
pycparser 2.21
pyparsing 3.0.6
python-dateutil 2.8.2
scapy 2.4.5
setuptools 57.4.0
setuptools-scm 6.3.2
six 1.16.0
some-package 0.1
tomli 1.2.2
C:\Users\xybdiy>
正文完