【发布时间】:2017-07-14 14:20:44
【问题描述】:
我的包已发布但无法安装时遇到以下问题:
$ 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
在https://bitbucket.org/codyc54321/intellimatch
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,
)
这是一个基本包,有 1 个文件夹,intellimatch,没有依赖项,只使用 Python。
【问题讨论】: