Installing specific package versions with pip(使用 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
这篇关于使用 pip 安装特定的软件包版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 pip 安装特定的软件包版本
基础教程推荐
- Sql Server 字符串到日期的转换 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01