在不托管服务器的情况下进行Python回购

python repo without hosting a server(在不托管服务器的情况下进行Python回购)
本文介绍了在不托管服务器的情况下进行Python回购的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经组合了一堆Python包,现在我想与我的团队共享。

我看到了一大堆关于托管Pypi服务器的文章,但我想绕过设置一台机器并获得这样做的许可。

我希望我可以通过网络编写提供我的同事可以访问的包。

我创建的一个包具有以下setup.py脚本:

from setuptools import setup, find_packages

setup(
    name='prodorm',
    version='0.1',
    packages = find_packages(),
    install_requires = ['ormutils @ file://N:/some/path/']
)

ormutils位于:N:/some/path/ormutils

但当我尝试使用上面的脚本进行安装时,我得到:

找不到‘ormutils’的索引页(可能拼写错误?)正在扫描 所有包的索引(这可能需要一段时间)阅读 https://pypi.org/simple/没有本地包或工作下载链接 为ormutils@file找到:n:/ome/路径/错误: 找不到Requirement.parse(‘ormutils@ File://n:/some/path/‘)

这个明显不是我创建的‘索引页’是什么,我如何创建它?

推荐答案

您可以使用GitHub或GitLab(或者可能是任何Web托管或自托管的GIT解决方案)中托管的pip安装包。

我建议您看看那篇博客文章:https://medium.freecodecamp.org/how-to-use-github-as-a-pypi-server-1c3b0d07db2

这篇关于在不托管服务器的情况下进行Python回购的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)