Cannot import mysql.connector - ModuleNotFoundError: No module named 'mysql'

Cannot import mysql.connector - ModuleNotFoundError: No module named 'mysql'

import mysql.connector 出现以下错误。

import mysql.connector
ModuleNotFoundError: No module named 'mysql'

但是,下面的命令显示mysql已安装?

(env) bash-4.2$ pip list | grep mysql
mysql (0.0.3)
mysqlclient (2.0.3)

(env) bash-4.2$ conda list mysql
WARNING conda.core.prefix_data:_load_site_packages(272): Problem reading non-conda package record at lib/python3.6/site-packages/pyzmq-17.0.0-py3.6.egg-info/PKG-INFO. Please verify that you still need this, and if so, that this is still installed correctly. Reinstalling this package may help.
WARNING conda.core.prefix_data:_load_site_packages(272): Problem reading non-conda package record at lib/python3.6/site-packages/jupyterlab-2.3.1-py3.9.egg-info/PKG-INFO. Please verify that you still need this, and if so, that this is still installed correctly. Reinstalling this package may help.
WARNING conda.core.prefix_data:_load_site_packages(272): Problem reading non-conda package record at lib/python3.6/site-packages/conda-4.10.3-py3.6.egg-info/PKG-INFO. Please verify that you still need this, and if so, that this is still installed correctly. Reinstalling this package may help.
WARNING conda.core.prefix_data:_load_site_packages(272): Problem reading non-conda package record at lib/python3.6/site-packages/certifi-2021.5.30-py3.6.egg-info/PKG-INFO. Please verify that you still need this, and if so, that this is still installed correctly. Reinstalling this package may help.
# packages in environment at /apps/external/4/anaconda3:
#
# Name                    Version                   Build  Channel
mysql                     5.7.20               h55eaa98_0    https://mycompany.intranet/repository/anaconda-main-proxy

BTW,为什么pipmysql的版本这么低? (0.0.3)

pip 安装 mysql-连接器 要么 不要让你的 .py 文件名:mysql.py 或类似的东西。

OS: Mac 11.6.2(大苏尔) Python: 3.9.7

如果您像我一样使用 conda 环境,并且在安装现有 mysql 模块的情况下安装 mysql-connector-python 模块时遇到问题,请尝试以下操作:

(env)username ~% conda update --all
(env)username ~% conda uninstall mysql
(env)username ~% conda install -c conda-forge mysql
(env)username ~% conda install -c conda-forge mysql-connector-python

现在,当 运行 从 VSCode 或 Anaconda Navigator 找到 mysql.connector 包时,它会从 JupyterLab 笔记本中找到。

我希望这对某人有用。