Mysql-connector-python 2.0.1-1 confilct with python-mysql.connector

When I installed mysql-connector-python 2.0.1-1 ( http://dev.mysql.com/downloads/connector/python/ ) on Ubuntu 14.04, the Software Center complains about configuring with python-mysql.connector . Should I remove python-mysql.connector ?

0
source share
1 answer

You should consider creating a virtual environment (e.g. pyenv or virtualenv) for a project that requires this particular version. Thus, you can have both versions without conflicting with each other. It may take longer to uninstall / reinstall, but in the long run it is a good habit to form to prevent such problems.

+1
source

Source: https://habr.com/ru/post/977241/


All Articles