pip install pip2pi
可以参考其他博客,或者我之前的博客.
偷懒,仅仅测试用的话:
requirements.txt
beautifulsoup4==4.11.1
bs4==0.0.1
certifi
charset-normalizer==2.1.1
idna==3.4
lxml==4.9.1
numpy==1.21.6
pandas==1.3.5
pip2pi==0.8.2
python-dateutil==2.8.2
pytz==2022.6
requests==2.28.1
six==1.16.0
soupsieve==2.3.2.post1
urllib3==1.26.13
wincertstore==0.2
pip install -r ./pypi_mirror_test/requirements.txt
说明:
在linux中:
sudo dir2pi ./pypi_mirror_test
在windows中:以管理员身份打开cmd命令行终端,执行
dir2pi ./pypi_mirror_test
执行完毕后,会在./pypi_mirror_test文件夹下生成一个simple文件夹,存储着python包的html索引。
在simple
或者在site-packages
?里创建server服务,8080为端口号,可以随意设置:
python -m http.server 8080
?此时可以在浏览器中访问并下载自己建立的pypi镜像库
路径1:127.0.0.1:8080
路径2:your_compuer_ip:8080. 其中,your_compuer_ip是你电脑的ipv4的地址,可以通过命令行终端自行查看。
下载安装nginx,修改nginx.conf:(nginx下载地址)
server{
listen 8080; # 1.设置端口
server_name 127.0.0.1; # 2.设置网址名
access_log logs/pip.log;
location / {
root D:/program/pypi_mirror_test/simple; # 3.设置html文件的搜索路径
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
}
}
双击执行nginx.exe启动nginx,此时可以用浏览器打开127.0.0.1:8080访问simple文件夹,
但是我这里总是下载文件失败,还没找到原因。
【错误原因】可能是没有配置好nginx对“.symlink”文件的权限。通过修改simple文件夹下的index.html文件可以绕过.symlink文件,直接下载源文件。具体修改方法是:
需要去修改simple目录下每个软件包目录下的index.html文件(此部分修改可自行写个python脚本批处理下):
手动操作示范:修改前:
修改后:
用python脚本批量修改:
import os import glob class Class_Util_Text(): def __init__(self): pass def read_text(self,text_path): """ 读取本地text文件到列表,并返回该列表 """ assert os.path.exists(text_path) with open(text_path,"r") as f: lines=f.readlines() #读行 return lines def write_text(self,text_path,text_content): """ 把文字写入文本文件中,会清空文本文件的原有内容 """ with open(text_path,"w") as f: f.writelines(text_content) f.writelines("\n") def append_text(self,text_path,text_content): """ 把文字添加到文本文件的末尾,保留原文本文件内容 """ with open(text_path,"a") as f: f.writelines(text_content) f.writelines("\n") def replace_text(self,text_path,replace_old,replace_new): """ 替换文本文件中的部分文字,先读文件,替换文字后,再重新写入文件 """ #read with open(text_path,"r") as f: lines=f.readlines() data=[] for i in lines: #根据条件修改 if(replace_old in i): i=i.replace(replace_old,replace_new) #修改 replace_old 为 replace_new data.append(i) #记录每一行 #write with open(text_path,"w") as f: for i in data: f.writelines(i) if __name__ =="__main__": txt_obj = Class_Util_Text() dir_path = "D:\pypi-packages\simple" html_files = glob.glob(dir_path+"/*/index.html") for html_path in html_files: txt_obj.replace_text(html_path,replace_old="<a href='",replace_new="<a href='../../" ) # txt_obj.replace_text(html_path,replace_old="<a href='../../",replace_new="<a href='" ) lines = txt_obj.read_text(html_path) print(html_path) print(lines)
先安装pypiserver
pip install pypiserver
然后执行下面命令:?
pypi-server -p 9090 -P your_path_to_pypi_dir
命令解析:
? ? ? ? -p:指定端口。不指定的话,pypi-server的默认端口是8080.
? ? ? ? -P:指定package路径。不指定的话,pypi-server的默认路径是“~/packages”