Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
pip 的 mysql-python 和 apt-get 的 python-mysqldb 有什么区别?
$ pip search mysql-python MySQL-python - Python interface to MySQL
和:
$ apt-cache search python-mysqldb python-mysqldb - Python interface to MySQL
pip 应该为您提供最新版本的 mysql-python,该版本可用于您从 pip 存储库中使用的 python 版本。
Apt 将为您提供被 debian 或 ubuntu 存储库管理器视为“稳定”的 mysql-python 版本。
软件包的功能(或安全性)可能会因版本差异而有所不同。
使用 pip install mysql-python 的好处是您可以使用 virtualenv 并为该包或框架安装特定版本。