时间:2021-05-23
1. 安装依赖
pip install pypiserver passlib
2. 创建packages目录
mkdir packages
3. 以无认证方式启动pypiserver
pypi-server -p 8080 -P . -a . ./packages
4. 编写.pypirc配置文件
[distutils]
index-servers =
pypi
local
[pypi]
username:xxx
password:xxxx
[local]
repository:http://localhost:8080
username:
password:
5. 上传到私有pypi服务
使用setuptools上传
python setup.py sdist bdist_wheel upload -r local
使用twine上传
twine upload -r local dist/*
安装
首先修改.pip.ini配置文件如下:
[global]
index-url=https://pypi.douban.com/simple
extra-index-url=
http://localhost:8080/simple/
https://mirrors.aliyun.com/pypi/simple/
https://mirrors.cloud.tencent.com/pypi/simple
https://pypi.tuna.tsinghua.edu.cn/simple/
https://pypi.doubanio.com/simple/
https://mirrors.163.com/pypi/simple/
[install]
trusted-host=
localhost:8080
pypi.douban.com
mirrors.aliyun.com
mirrors.cloud.tencent.com
pypi.tuna.tsinghua.edu.cn
pypi.doubanio.com
mirrors.163.com
安装
pip install [package-name]
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
安装Docker后,可以通过官方提供的registry镜像来简单搭建一套本地私有仓库环境,本文记录简单的搭建过程。1使用registry启动私有仓库的容器doc
docker搭建私有仓库本篇文章描述了多个机器可以在内网中访问自己的私有仓库,访问仓库时需要CA认证!最简单,最低保障私有仓库的安全性!在一个比较庞大的集群里,
为什么要弄私有仓库,大多是为了速度,我们再私有仓库中的push和pull的速度是特别快的。利用registry快速搭建https://hub.docker.co
DockerRegistry私有仓库搭建官方已经提供了很多版本的Linux镜像,直接从官方仓库(PublicRepositories)下载就可以了。如果考虑到安
微服务的镜像会上传到docker仓库保存,常用的公网docker仓库有阿里云,网易云等,在企业局域网也可以搭建自己的docker私有仓库,本教程使用docker