如何在 python/pip 中使用带星号的版本控制来安装开发版本?
How to install dev version using versioning with asterisk in python/pip?
如何安装开发者。包的版本(例如 0.2.dev0+gebdc597
由例如 setuptools_scm 生成)?
我试过了
pip install my-package==0.2.*
失败了。难受。我无法粘贴确切的错误,但它类似于 couldn't find this version, <list of found versions>
此外,我想稍后在 requirements.txt
/install_requires
中使用它,所以我需要一种同时适用于 pip
和 setuptools
的方法。我希望它是一样的。
如何安装开发者。包的版本(例如 0.2.dev0+gebdc597
由例如 setuptools_scm 生成)?
我试过了
pip install my-package==0.2.*
失败了。难受。我无法粘贴确切的错误,但它类似于 couldn't find this version, <list of found versions>
此外,我想稍后在 requirements.txt
/install_requires
中使用它,所以我需要一种同时适用于 pip
和 setuptools
的方法。我希望它是一样的。