搭建自己的pypi镜像库

1.下载pip2pi,并安装(下载地址)

2.新建一个目录,用于做仓库目录

3.下载python中的所需包放至仓库目录
可以手动下载自己需要的文件包到该目录下,或者利用清华镜像库来下载所有的文件包。
可以使用如下方式下载全部的镜像文件(从清华镜像库中下载):
(1)将清华pypi镜像库文件列表粘贴到requirement.txt文件中。

import requests
import re
report = requests.request('get','https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/')
# print(report.text)
text_str = str(report.text).split('\n')
with open('requirement.txt','w+') as f:
    for i in text_str:
        temp = re.findall('',i)
        # print(i,temp)
        if temp != []:
            f.write(str(temp[0])+'\n')

(2)根据requirement.txt下载所有的镜像库文件:

#!/bin/bash
import os
file="C:\\software\\package\\requirement.txt"

with open(file,'r+') as f:
    text = f.readlines()
    for i in text:
        # os.mkdir('C:\\software\\package\\'+i[:-1])
        os.system('pip download '+i[:-1]+' -i https://pypi.tuna.tsinghua.edu.cn/simple -d '+'C:\\software\\package\\')

(只进行了部分下载。在样例截图中,配置的目录地址与代码里的不一样,大家可以根据需要修改。)
搭建自己的pypi镜像库_第1张图片

4.在cmd窗口中执行:

dir2pi 仓库目录

目录下多了一个simple目录,且simple目录里会自动创建每个软件包的目录。
搭建自己的pypi镜像库_第2张图片
这里如果是在windows上操作,会存在一个问题:
搭建自己的pypi镜像库_第3张图片
需要去修改simple目录下每个软件包目录下的index.html文件(此部分修改可自行写个python脚本批处理下):
手动操作示范:
搭建自己的pypi镜像库_第4张图片
修改前:
在这里插入图片描述
修改后:
在这里插入图片描述

5.安装nginx,修改nginx.conf:(nginx下载地址)

server{
    listen		8000;
    server_name 	127.0.0.1::8000;
    access_log 	logs/pip.log;
    location / {
            root D:\program\python\package;
            autoindex on;
            autoindex_exact_size off;
            autoindex_localtime on;
    }
}

6.双击执行nginx.exe启动nginx
搭建自己的pypi镜像库_第5张图片

7.访问 : http://127.0.0.1:8000/simple/,就可以看到搭建好的镜像库啦~
搭建自己的pypi镜像库_第6张图片
下载:
搭建自己的pypi镜像库_第7张图片
搭建自己的pypi镜像库_第8张图片
在这里插入图片描述

8.使用自己搭建的本地镜像库安装python相关软件包:
临时性:

pip install django -i http://127.0.0.1:8000/simple/

永久性:

pip config set global.index-url http://127.0.0.1:8000/simple/
pip install django

你可能感兴趣的:(python,python)