本文介绍了导入错误:没有名为结构的模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是 mysql 结构的新手.我收到以下错误:
I am new to mysql fabric. I am getting the following error:
root@ajith-System-Product-Name:/home/ajith# mysqlfabric
Traceback (most recent call last):
File "/usr/bin/mysqlfabric", line 33, in <module>
from mysql.fabric import (
ImportError: No module named fabric
我安装了 mysql-connector-python_2.1.3
、mysql-utilities_1.5.6
和 python2.7
.
推荐答案
你的 from
语句应该使用 mysqlfabric
,而不是 mysql.fabric
,据我所知.
Your from
statement should use mysqlfabric
, not mysql.fabric
, as far as I can tell.
这篇关于导入错误:没有名为结构的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!