gpt4 book ai didi

python - 已发布的 pypi 包显示在搜索中,但不会 pip install

转载 作者:行者123 更新时间:2023-12-01 02:47:47 25 4
gpt4 key购买 nike

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

$ 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。

最佳答案

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

$ pip install intellimatch -vvv

这将向您显示调试回溯。

该网址指向https://pypi.python.org/simple/intellimatch/它没有您的软件包的存档,因此它不会下载并安装您的软件包。取自搭便车的guide ,使用以下命令上传包的发行版。

$ python setup.py register sdist upload

关于python - 已发布的 pypi 包显示在搜索中,但不会 pip install,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45105264/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com