python3模块在哪里?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3模块在哪里?相关的知识,希望对你有一定的参考价值。
我正在尝试运行示例数据库连接我的mariadb数据库。
python3 sample.py
Traceback (most recent call last):
File "sample.py", line 3, in <module>
import mysql.connector as mariadb
ModuleNotFoundError: No module named 'mysql'
我已经安装了python3-mysql.connector。
sudo apt-get -y install python3-mysql.connector
Reading package lists... Done
Building dependency tree
Reading state information... Done
python3-mysql.connector is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
答案
我建议使用pip来安装Python模块:
sudo pip3 install mysql-connector
然后,您的Python程序应该能够使用该模块。
以上是关于python3模块在哪里?的主要内容,如果未能解决你的问题,请参考以下文章