Difference between pip's mysql-python and apt-get's python-mysqldb -


what difference between pip's mysql-python , apt-get's python-mysqldb?

$ pip search mysql-python mysql-python    - python interface mysql 

and:

$ apt-cache search python-mysqldb python-mysqldb  - python interface mysql 

pip should newest version of mysql-python available version of python you're using pip repository.

apt give mysql-python version deemed "stable" debian, or ubuntu repository managers.

the functionality (or security) of packages different based on version differences.

the benefit of using pip install mysql-python, can using virtualenv , have specific version installed package or framework.


Comments