在使用之前的代码时,报错:
Traceback (most recent call last):
File “xxx”, line xx, in
import dbutils
ModuleNotFoundError: No module named ‘dbutils’
Traceback (most recent call last):
File "xxx", line xx, in
import dbutils
ModuleNotFoundError: No module named 'dbutils'
主要报错信息内容翻译如下所示:
Traceback (most recent call last):
File "xxx", line xx, in
import dbutils
ModuleNotFoundError: No module named 'dbutils'
翻译:
追溯(最近一次通话):
文件“xxx”,第xx行,在
导入dbutils
ModuleNotFoundError:没有名为“dbutils”的模块
...
import dbutils
...
经过查阅资料,发现是这个错误通常是由于缺少dbutils的依赖库,就会出现这样的提示。
小伙伴们按下面的解决方法即可解决!!!
要解决这个错误,需要安装dbutils的依赖库,即可解决。
在window下安装dbutils
pip install dbutils
如果你嫌下载慢,可以更改下载源,
比如,利用豆瓣的下载源
pip install dbutils -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
附,国内各大源列表:
名称 | 地址 |
---|---|
阿里 | https://mirrors.aliyun.com/pypi/simple |
豆瓣 | http://pypi.douban.com/simple/ |
清华大学 | https://pypi.tuna.tsinghua.edu.cn/simple |
中国科学技术大学 | https://pypi.mirrors.ustc.edu.cn/simple |
华中理工大学 | http://pypi.hustunique.com/simple |
山东理工大学 | http://pypi.sdutlinux.org/simple |
网易 | https://mirrors.163.com/pypi/simple/ |
腾讯 | https://mirrors.cloud.tencent.com/pypi/simple |
如果你使用的是conda环境,请尝试使用conda install安装dbutils。
如果你使用的是pip安装dbutils,可以尝试使用以下命令安装:
pip install --no-cache-dir dbutils
将安装包手动下载到本地进行安装,然后在cmd 中进入安装包的路径下面用:cd +路径,进入。
然后输入以下命令:
pip install DBUtils-3.0.3-py3-none-any.whl
就可以进行安装了。
附下载链接,点击下载对应版本的dilb链接
https://pypi.org/project/dbutils/#description
如果上述方法都不能解决问题,你可以尝试从源代码编译安装dbutils。具体步骤可以参考dbutils的官方文档。
Dbutils是一套工具,可为数据库提供可靠,持久和汇总的连接,该连接可在各种多线程环境中使用。
该套件支持DB-API 2兼容的数据库接口和经典的PygresQL接口。
官网:https://webwareforpython.github.io/DBUtils/
官方pip:https://pypi.org/search/?q=DBUtils
参考内容:
https://www.zhihu.com/question/34524316?sort=created