Thank you for your response Rich. I had a newer version of Python on my 
computer. I found a video on YouTube detailing how to redirect Spyder to the 
new Python version. This solved the problem I was having. Once again thank you.

 

Kind regards John

 

From: spyderlib@googlegroups.com <spyderlib@googlegroups.com> On Behalf Of Rich 
Lysakowski
Sent: Monday, 24 April 2023 1:53 pm
To: spyder <spyderlib@googlegroups.com>
Subject: [spyder] Re: import mysql.connector no go (IT IS PROBABLY NOT 
INSTALLED IN THE RIGHT LOCATION...)

 

This is not a problem with Spyder.  It is a problem because you are not 
referencing the connector from within your Python virtual environment 
correctly.  

 

Did you install the MySQL connector into the Spyder environment where the 
interpreter lives?  

 

>From the Spyder iPython Console type the following commands to see what 
>"environment" you are running Python in, and the full path to your Python.exe 
>interpreter file.  

 

import sys
sys.prefix

sys.executable

 

Then start a regular Windows console (or "terminal" if you are on Linux or 
MacOSX) and type 

 

activate base        #  This will activate your Python "base" environment if 
you installed Python using Anaconda.

conda list              # This will show all packages installed in your 
environment. 

 

or "pip list"

 

This will show whether your MySQL / Python Connector is available in your 
environment.

 

On Friday, April 21, 2023 at 3:08:03 PM UTC-4 johndou...@gmail.com 
<mailto:johndou...@gmail.com>  wrote:

I am new to using Spyder, I find it is so easy to use, a lot of thought has 
gone into it's design. However I have a problem with the Python installed with 
Spyder. I am using Python with MySQL. When I run a program with the first line 
"import mysql.connector" the program fails because it can't find the 
MySQL/Python connector.

I have a previous installation of Python and the program works perfectly with 
that Python. I tried reinstalling the MySQL/Python Connector, but that made no 
difference.

Is there a way to make Spyder use the Python that works, or get Spyder to see 
the connector?

 

-- 
You received this message because you are subscribed to the Google Groups 
"spyder" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to spyderlib+unsubscr...@googlegroups.com 
<mailto:spyderlib+unsubscr...@googlegroups.com> .
To view this discussion on the web visit 
https://groups.google.com/d/msgid/spyderlib/07fbacd1-cb49-4ac2-9c36-f6161f927e19n%40googlegroups.com
 
<https://groups.google.com/d/msgid/spyderlib/07fbacd1-cb49-4ac2-9c36-f6161f927e19n%40googlegroups.com?utm_medium=email&utm_source=footer>
 .

-- 
You received this message because you are subscribed to the Google Groups 
"spyder" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to spyderlib+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/spyderlib/001301d97662%2413eeccf0%243bcc66d0%24%40gmail.com.

Reply via email to