问题标签 [devpi]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
devpi - devpi - 如何获得“root//json" 服务
我的目标是在 micropython 设备上安装 python 包。无论如何,我让 devpi-server 运行并上传了一个包。
我无法实现的是,devpi-server 提供的东西就像你从: https ://micropython.org/pi/micropython-pystone_lowmem/json
访问上面的url就是,“upip”是如何获取它的包信息的。
所以我是 Pypy-server 和 devpi-server 的新手,这可能是一个微不足道的问题,无论如何我在这一点上被卡住了。
提前感谢您的任何帮助,阿克塞尔。
python - 类型错误:detect_vcs() 缺少 1 个必需的位置参数:运行 `devpi upload --formats bdist_wheel` 时的 'ui'
我的版本是:
我该如何解决这个问题?我尝试升级/降级devpi-client
到4.4.0
和到,5.1.1
但它仍然给我同样的错误。
python - 带有 devpi 镜像的 nexus pypi 代理
我正在将我的旧代理和镜像 devpi 服务器迁移http://devpi.me.com
到 nexus https://nexus.me.local
。我创建了一个名为 的代理存储库pypi
,它的 url 是http://devpi.me.com
它的,但似乎找不到包。我测试了几种配置:
注意:我有一个名为 abc/index 的索引
当我尝试时,pip install -v mypackage
我收到带有上述所有配置的错误消息:
这里有什么问题?
pip - 将包从 devpi-server 迁移到 nexus3
我计划将我的 pypi 存储库移动到 nexus3 而不是当前的 devpi-server。有没有办法做到这一点?我首先尝试在 nexus 中为旧的 devpi-server 创建一个代理,但它没有成功(带有 devpi 镜像的 nexus pypi 代理)
我正在考虑重新上传包,但我现在没有源代码。有没有办法解决这个问题,例如将 devpi 索引复制到 nexus3?
pypi - 使用 Devpi 锁定包的版本
我正在使用 Devpi 服务器来缓存我的包。有什么方法可以冻结包的版本,例如,如果我安装版本为 v2.0 的包,几天后如果我再次使用 pip 安装包,我想要仅相同版本。
任何帮助,将不胜感激
docker - OSError: [Errno 99] Cannot assign requested address with devpi
I have devpi instance running in docker container, and I want to run devpi replice on another server (in Docker container too). For test I'm tryin to run these two containers on one host.
Devpi master starts and run successfully. I use this entrypoint to run it
/usr/local/bin/devpi-server --host 0.0.0.0 --port 3141 --role master --serverdir /data/data/srv
Devpi replica cannot start. I use this entrypoint to run it
/usr/local/bin/devpi-server --master-url http://10.80.0.26:3141 --port 4000 --role replica --serverdir /data/data/srv
10.80.0.26 - IP address of the host, where I run Docker containers I tried localhost, 127.0.0.1, internal Docker IP addess
Everytime I get this error:
What I should check or fix?