我有以下問題,即我的包被公佈,但無法安裝:發佈安裝包的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 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。
上註冊你的軟件包哇,我想你已經解決了它。我辦公室的網絡安全可能阻止了它或者什麼,我會在家裏嘗試這個,如果我失敗了,就會打開不同的問題。謝謝 – codyc4321
'開放不同的問題,如果我失敗'愛它當人們說這 –
如果你認識到這個SSL錯誤,我會很感激 – codyc4321