我已经安装了所需的模块,请参阅镜像,我所希望的就是能够在空闲(python的集成开发和学习环境)上运行它,就像在镜像中看到的那样,我正在运行powershell和当我在驱动器D上时:mysql.connector不起作用,但是要在驱动器C上起作用:是否有办法告诉空闲驱动器C上导入mysql.connector?实际上我的python在驱动器D上:所以我不确定为什么会这样
我还尝试安装pip install mysql-connector-python和mysql-connector-python-rf,仍然是同样的问题
当我在空闲或在Powershell中运行此代码时,我正在从w3schools使用此代码
import mysql.connector
mydb = mysql.connector.connect(
host="localhost",
user="yourusername",
passwd="yourpassword",
database="mydatabase"
)
mycursor = mydb.cursor()
mycursor.execute("SELECT * FROM customers")
myresult = mycursor.fetchall()
for x in myresult:
print(x)