【发布时间】:2020-01-23 09:53:35
【问题描述】:
我做了一个pip包上传到这里:
https://pypi.org/project/audacityDiscogsExporter/0.1.0/
如果我运行pip install audacityDiscogsExporter==0.1.0 或pip install audacityDiscogsExporter,我会收到一条错误消息:
martin@MSI:/mnt/c/Users/marti/Documents/projects/package$ pip install audacityDiscogsExporter
DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. A future version of pip will drop support for Python 2.7. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support
Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement audacityDiscogsExporter (from versions: none)
ERROR: No matching distribution found for audacityDiscogsExporter
为什么我不能安装这个包?
【问题讨论】:
-
使用
pip3安装你的包。 -
pip3是一个快捷方式,可能有效,也可能与pip一样错误。它并没有明显缓解导致问题的不确定性。如果没有进一步的解释,我不会推荐该建议。
标签: python-3.x pip pypi