Build your own pip source in Python environment
1. Install the pip2pi tool:
##
pip install pip2pi
git clone https://github.com/wolever/pip2pi cd pip2pi python setup.py install
2. Create a warehouse to store the software package:
mkdir /opt/python/soft/pypi.jb51.net
3. Download the software package And create an index:
Download a software package individuallypip2tgz /opt/python/soft/pypi.jb51.net/ routes==1.12.3
pip2tgz /opt/python/soft/pypi.jb51.net/ -r list/requirements.txt
dir2pi /opt/python/soft/pypi.jb51.net/
pip2acmeco uliweb=0.2.6 pip2acmeco -r list/requirements.txt
4. Configure the web side with nginx:
Nginx server adds virtual host configuration:server { listen 80; server_name pypi.jb51.net; root /opt/python/soft/pypi.jb51.net; location /{ autoindex on; autoindex_exact_size off; #显示文件的大小 autoindex_localtime on; #显示文件时间 #limit_rate_after 5m; #5分钟后下载速度限制为200k limit_rate 200k; } access_log logs/pypi.jb51.net.access.log main; }
5. How to better use pypi source:
For example, install uliwebpip install --index-url=http://www.php.cn/ uliweb
pip install -i uliweb
[global] index-url = http://www.php.cn/
http://pypi.douban.com 豆瓣 http://pypi.hustunique.com 华中理工大学 http://pypi.sdutlinux.org 山东理工大学 http://pypi.mirrors.ustc.edu.cn 中国科学技术大学
PS: There are two ways to modify the source used by easy_install and pip
(from the mirror source e.pypi.python.org on Linux Download and install requests as an example):
easy_install -i http://e.pypi.python.org/simple requests
pip install requests -i http://e.pypi.python.org/simple
[easy_install] index_url = http://e.pypi.python.org/simple
[global] index-url = http://e.pypi.python.org/simple

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

When using Python's pandas library, how to copy whole columns between two DataFrames with different structures is a common problem. Suppose we have two Dats...

How to teach computer novice programming basics within 10 hours? If you only have 10 hours to teach computer novice some programming knowledge, what would you choose to teach...

Regular expressions are powerful tools for pattern matching and text manipulation in programming, enhancing efficiency in text processing across various applications.

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

How does Uvicorn continuously listen for HTTP requests? Uvicorn is a lightweight web server based on ASGI. One of its core functions is to listen for HTTP requests and proceed...

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

In Python, how to dynamically create an object through a string and call its methods? This is a common programming requirement, especially if it needs to be configured or run...
