Kungreye
Kungreye

Reputation: 108

How to update sdist package of mysql-connector?

I am trying to update sdist package of mysql-connector (from 2.1.6 to 2.2.3, window7) using 'pip install -U mysql-connector', but have failed. See below:

Anyone encountered the same issue and any possible solutions? Many thanks.

How to update sdist package of mysql-connector

Upvotes: 0

Views: 82

Answers (1)

Alaa Aqeel
Alaa Aqeel

Reputation: 645

Try updating pip

python -m pip install -U pip

And then the

python -m pip install -U mysql-connector

Or download the latest version of https://dev.mysql.com/downloads/connector/python/

Upvotes: 0

Related Questions