ImportError: No module named mysql.connector using Python2

610    Asked by JustinStewart in Python , Asked on Mar 8, 2021

I am having two files. The first one has a connection and the getting of data. I am importing mysql.connector. This file is called tasksSql.py

def get_users(): import mysql.connector con = mysql.connector.connect(user='****', password='*****', host='127.0.0.1', database='tasks') c = con.cursor() users = [] c.execute("""SELECT * FROM task_user""") for row in c: user = { 'id': row[0], 'first': row[1], 'last': row[2], 'email': row[3], 'password': row[4], 'creation_date': row[5] } users.append(user) c.close() return users

When I am running this file singly it works and returns the data.

Another file is named tasks.py where I am going to be importing this file, however, this is not working! When I import the file, it gives me the following error:

ImportError: No module named mysql.connector

Where am I doing wrong?

Answered by Justin Stewart

The importerror: no module named mysql.connector error depends on the version of python and how you had installed it, it is most likely that the MySQL connector wouldn't have been installed, you can install it using pip.

Execute the below command in order to install the MySQL connector:

pip install mysql-connector-python



Your Answer

Interviews

Parent Categories