使用 pip 安装特定的软件包版本
我正在尝试安装 MySQL_python
的 1.2.2 版,使用使用 --no-site-packages
选项创建的全新 virtualenv.PyPi 中显示的当前版本是 1.2.3.有没有办法安装旧版本?我试过了:
I am trying to install version 1.2.2 of MySQL_python
, using a fresh virtualenv created with the --no-site-packages
option. The current version shown in PyPi is 1.2.3. Is there a way to install the older version? I have tried:
pip install MySQL_python==1.2.2
然而,安装后,它仍然在站点包中显示MySQL_python-1.2.3-py2.6.egg-info
.这是这个包特有的问题,还是我做错了什么?
However, when installed, it still shows MySQL_python-1.2.3-py2.6.egg-info
in the site packages. Is this a problem specific to this package, or am I doing something wrong?
推荐答案
TL;DR:
pip install -Iv
(即pip install -Iv MySQL_python==1.2.2
)
首先,我发现您尝试执行的操作存在两个问题.由于您已经安装了版本,您应该卸载当前现有的驱动程序或使用 pip install -I MySQL_python==1.2.2
First, I see two issues with what you're trying to do. Since you already have an installed version, you should either uninstall the current existing driver or use pip install -I MySQL_python==1.2.2
但是,您很快就会发现这行不通.如果您查看 pip 的安装日志,或者执行 pip install -Iv MySQL_python==1.2.2
,您会发现 PyPI URL 链接不适用于 MySQL_python v1.2.2.你可以在这里验证:http://pypi.python.org/pypi/MySQL-python/1.2.2
However, you'll soon find out that this doesn't work. If you look at pip's installation log, or if you do a pip install -Iv MySQL_python==1.2.2
you'll find that the PyPI URL link does not work for MySQL_python v1.2.2. You can verify this here: http://pypi.python.org/pypi/MySQL-python/1.2.2
由于 sourceforge.net 最近的升级和 PyPI 的陈旧 URL,下载链接 404 和回退 URL 链接无限重定向.
The download link 404s and the fallback URL links are re-directing infinitely due to sourceforge.net's recent upgrade and PyPI's stale URL.
因此要正确安装驱动程序,您可以按照以下步骤操作:
So to properly install the driver, you can follow these steps:
pip uninstall MySQL_python
pip install -Iv http://sourceforge.net/projects/mysql-python/files/mysql-python/1.2.2/MySQL-python-1.2.2.tar.gz/download
相关文章