Python 已发布的pypi包显示在搜索中,但赢得了';t管道安装

Python 已发布的pypi包显示在搜索中,但赢得了';t管道安装,python,pip,pypi,Python,Pip,Pypi,我有以下问题,我的软件包已发布但无法安装: $ pip search "intellimatch" intellimatch (0.1.0) - Intelligent matching/textsearch/cli interactivity that works for humans $ pip install intellimatch Collecting intellimatch Could not find a version that satisfies the requir

我有以下问题,我的软件包已发布但无法安装:

$ pip search "intellimatch"
intellimatch (0.1.0)  - Intelligent matching/textsearch/cli interactivity that works for humans

$ pip install intellimatch
Collecting intellimatch
  Could not find a version that satisfies the requirement intellimatch (from versions: )
No matching distribution found for intellimatch

$ pip install intellimatch==0.1.0
Collecting intellimatch==0.1.0
  Could not find a version that satisfies the requirement intellimatch==0.1.0 (from versions: )
No matching distribution found for intellimatch==0.1.0

setup.py
看起来像

from setuptools import setup

setup(
    name='intellimatch',
    version='0.1.0',
    description='Intelligent matching/textsearch/cli interactivity that works for humans',
    url='https://bitbucket.org/codyc54321/intellimatch',
    author='codyc4321',
    license='MIT',
    packages=['intellimatch'],
    install_requires=[],
    zip_safe=False,
)

这是一个基本包,有一个文件夹,
intellimatch
,没有依赖项,只使用Python

pip从PyPI下载软件包。目前没有软件包,因此无需下载和安装

给皮普一个:


pypi中没有您的项目存档。请参阅以下步骤

$ pip install intellimatch -vvv
这将向您显示调试回溯

url指向没有您的软件包存档的位置,因此它不会下载和安装您的软件包。从hitchhiker's下载,使用下面的命令上传包的分发

$ python setup.py register sdist upload

好的,我现在就试试,你知道我需要做什么才能正常发布吗,这样
pip安装intellimatch
?我以为我遵循的指南是这样的…
pip安装git+https://bitbucket.org/codyc54321/intellimatch/src?egg=intellimatch 集水罐+https://bitbucket.org/codyc54321/intellimatch/src?egg=intellimatch   克隆https://bitbucket.org/codyc54321/intellimatch/src?egg=intellimatch 到/private/var/folders/20/blah/T/pip blah build remote:未找到致命错误:存储库'https://bitbucket.org/codyc54321/intellimatch/src?egg=intellimatch/“未找到命令”git clone-qhttps://bitbucket.org/codyc54321/intellimatch/src?egg=intellimatch /private/var/folders/20/blah/T/pip blah build”失败,错误代码为128(无)
我已经在pypi上注册了它,当我登录时,我看到了包
pip install git+https://bitbucket.org/codyc54321/intellimatch/src
确实有效,但这不是我想知道的。如果你想使用vcs url,那么不需要在pypiWow注册你的软件包,我想你已经解决了。我办公室的网络安全可能已经阻止了它或其他什么,我会在家里尝试,如果失败了,我会提出不同的问题。谢谢
如果我失败了,请回答另一个问题
喜欢别人这样说我现在想解决:)我在工作,有很多防火墙我没有设置,也不明白。通常我只是回家做这样的事情,这很有效
$ python setup.py register sdist upload