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模块在哪里?的主要内容,如果未能解决你的问题,请参考以下文章

python urllib2模块 在哪里下载?

代码片段 PHP,预期文件结尾,我错在哪里?

scrapy主动退出爬虫的代码片段(python3)

scrapy按顺序启动多个爬虫代码片段(python3)

学习笔记:python3,代码片段(2017)

我在哪里更改此 Python 代码片段以将临时文件保存在 tmp 文件夹中?