31

我正在尝试为setup.py具有公共和私有依赖项的私有项目编写安装文件。公共的托管在 PyPI 上,而私有的托管在运行simplepypi的服务器上。

我希望在安装过程中解析和获取公共和私有依赖项。

因此,我将依赖项添加到setup.py

setup(
    ...
    install_requires = [
        # public dependencies
        'argparse==1.2.1',
        'beautifulsoup4==4.1.3',
        'lxml==3.1.0',
        'mongoengine==0.8.2',
        'pymongo==2.5.2',
        'requests==1.1.0',
        'Cython==0.18',
        # private dependencies
        'myprivatepackage1',
        'myprivatepackage2'
    ],
    dependency_links=['http://pypi.myserver.com/packages'],
    ...
)

我使用命令构建包 tarballpython setup.py sdist并使用pip install --verbose path/to/tarball.tar.gz.

但是,pip 日志行在任何地方都没有提到我的私有 PyPI 服务器,而且https://pypi.python.org/simple/似乎已经被查询了两次。

Running setup.py egg_info for package from file:///home/b/code/mapado/mypackage/dist/mypackage-0.5.1.tar.gz
    running egg_info
    creating pip-egg-info/mypackage.egg-info
    writing requirements to pip-egg-info/mypackage.egg-info/requires.txt
    writing pip-egg-info/mypackage.egg-info/PKG-INFO
    writing top-level names to pip-egg-info/mypackage.egg-info/top_level.txt
    writing dependency_links to pip-egg-info/mypackage.egg-info/dependency_links.txt
    writing manifest file 'pip-egg-info/mypackage.egg-info/SOURCES.txt'
    warning: manifest_maker: standard file '-c' not found
    
    reading manifest file 'pip-egg-info/mypackage.egg-info/SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    writing manifest file 'pip-egg-info/mypackage.egg-info/SOURCES.txt'
Downloading/unpacking myprivatepackage (from mypackage==0.5.1)
  Could not fetch URL https://pypi.python.org/simple/myprivatepackage/: HTTP Error 404: Not Found (myprivatepackage does not have any releases)
  Will skip URL https://pypi.python.org/simple/myprivatepackage/ when looking for download links for myprivatepackage (from mypackage==0.5.1)
  Could not fetch URL https://pypi.python.org/simple/myprivatepackage/: HTTP Error 404: Not Found (myprivatepackage does not have any releases)
  Will skip URL https://pypi.python.org/simple/myprivatepackage/ when looking for download links for myprivatepackage (from mypackage==0.5.1)
  Could not find any downloads that satisfy the requirement myprivatepackage (from mypackage==0.5.1)
Cleaning up...

我错过了什么?

4

3 回答 3

20

看起来你没有像simplepy的文档所说的那样指定你的主机,你需要~/.pypirc用好的主机名来设置你的主机名

要使用它,请运行“simplepypi”。您可以通过以下方式上传包:

Modify your ~/.pypirc so it looks like:

    [distutils]
    index-servers =
        pypi
        local

    [local]
    username: <whatever>
    password: <doesn't matter, see above>
    repository: http://127.0.0.1:8000

    [pypi]
    ...

然后你将上传你的包裹

python setup.py sdist upload -r local

并且可以从那里安装它

pip install -i http://127.0.0.1:8000/pypi <your favorite package>

希望这会有所帮助。

于 2013-09-16T13:33:02.877 回答
0

您可以将您的包制作为普通的 pip 包并将其发布到私有仓库。--extra-index-url 要安装它,您可以在配置文件中指定全局选项:

$ cat ~/.pip/pip.conf
[global]
extra-index-url = https://...
于 2020-10-22T12:33:14.583 回答
0

dependency_links默认情况下被忽略(至少在 pip 9.0.1 中)

为了让它连接到您的服务器,您需要添加--process-dependency-links

我相信pip 10 会带来一个新的机制,但现在它已经为我工作了

我还必须更新dependency_links以包含包名称,例如:

dependency_links=[
    "http://internal-pyp:5678/simple/your_package_name"
]
于 2018-04-13T06:55:42.153 回答