palo
palo

Reputation: 169

Connector and python are installed but mysql installer is not recognizing them

I am installing mySql but there were some unfulfilled requirements. I have installed python 32 bit on my system but it is still failing requirement.I am stuck here for last two days and due to this failing requirement mysql workbench is not installing. I need some help.

enter image description here

enter image description here

Even i have installed connector but in installation their is error that connector requirement is failing

enter image description here

Upvotes: 1

Views: 2748

Answers (2)

Ankul
Ankul

Reputation: 121

Check the python version that you have installed maybe you installed 64 bit instead of 34 bit

Upvotes: 0

nbk
nbk

Reputation: 49385

Connector/Python requires python to be in the system's PATH and installation fails if python cannot be located. On Unix and Unix-like systems, python is normally located in a directory included in the default PATH setting. On Windows, if you install Python, either enable Add python.exe to Path during the installation process, or manually add the directory containing python.exe yourself.

see manual

Upvotes: 1

Related Questions