我正在尝试mysql-connector-python==1.0.12
作为项目自动安装的一部分进行安装,但出现以下错误pip install
:
Collecting mysql-connector-python==1.0.12 (from -r /tmp/requirements.txt (line 20))
Could not find a version that satisfies the requirement mysql-connector-python==1.0.12 (from -r /tmp/requirements.txt (line 20)) (from versions: )
No matching distribution found for mysql-connector-python==1.0.12 (from -r /tmp/requirements.txt (line 20))
直到几天前它工作正常。我调查了一下,在 bitbucket.org 中发现了以下问题。具体来说,以下评论日期为 2015 年 12 月 28 日:
这应该是空白的,根据 PEP 470,使用 PyPI 链接到非由 PyPI 托管的包以供自动安装程序下载(/simple/ 索引)已被弃用并计划删除。受影响软件包的维护者在 3 个月前收到了电子邮件。删除发生在今天早些时候(一个错误导致一些托管在 PyPI 上的 oackages,如 Twisted 也删除了它们的链接,但已得到补救)。MySQL-connector-python 的维护者应该上传到 PyPI 或指导他们的用户在他们维护的存储库中使用 -f 或 --extra-index-url。
怎样才能让安装mysql-connector-python==1.0.12
运行顺利?我需要建立自己的存储库吗?