微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Python 构建 - 可信主机

如何解决Python 构建 - 可信主机

我正在尝试构建一个蟒蛇轮。 Pip 配置为使用自定义存储库,该存储库不受(全球)信任。运行时

python -m build

因此,我面临以下警告:

Uninstalling setuptools-41.2.0:
Successfully uninstalled setuptools-41.2.0
Looking in indexes: http://myRepository
WARNING: The repository located at myRepository is not a trusted or secure host and is being ignored. If this repository is available via HTTPS we recommend you use HTTPS instead,otherwise you may silence this warning and allow it anyway with '--trusted-host artifactory'.

然后构建将失败。但是,trusted-host 实际上似乎并不是一个可以接受的参数:

python -m build --trusted-host myRepository

结果

usage: python -m build [-h] [--version] [--sdist] [--wheel] [--outdir OUTDIR] [--skip-dependency-check] [--no-isolation] [--config-setting CONfig_SETTING] [srcdir]
python -m build: error: unrecognized arguments: --trusted-host

如何在手动启用受信任的 myRepository 的同时运行构建?

我特别在寻找一种基于每个命令的解决方案。具体来说,我无法修改任何全局/用户/站点 pip 配置文件、将存储库移至 https 或任何类似内容

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。