Heroku pip 在 pypi 中找不到我最近发布的包
Heroku pip cannot find my recently published package in pypi
我最近将我的 Python package 上传到 PyPI。我还根据该包开发了一个网络应用程序。我想将我的网络应用程序部署到 Heroku。但是,Heroku 无法使用 pip 找到我的包。
它抛出
ERROR: Could not find a version that satisfies the requirement lgp==0.0.2 (from versions: none)
ERROR: No matching distribution found for lgp==0.0.2
我在我的本地机器上试过 pip install my package
,它工作正常。 Heroku 失败的可能原因是什么?
提前致谢。
您的包需要 Python >=3.7
,确保您使用的运行时具有 Python 3.7 或更高版本。
我最近将我的 Python package 上传到 PyPI。我还根据该包开发了一个网络应用程序。我想将我的网络应用程序部署到 Heroku。但是,Heroku 无法使用 pip 找到我的包。
它抛出
ERROR: Could not find a version that satisfies the requirement lgp==0.0.2 (from versions: none)
ERROR: No matching distribution found for lgp==0.0.2
我在我的本地机器上试过 pip install my package
,它工作正常。 Heroku 失败的可能原因是什么?
提前致谢。
您的包需要 Python >=3.7
,确保您使用的运行时具有 Python 3.7 或更高版本。