当前位置: 首页 > 工具软件 > pysqlite > 使用案例 >

Anaconda的jupyter notebook 从命令行打开报错 No module named ‘pysqlite2‘

扶冠宇
2023-12-01

问题

在命令行输入jupyter notebook启动的时候报错,相关的错误中有 pysqlite2 关键字。
重新安装 Anaconda 环境也无法解决。

解决方法

使用 Anaconda 安装 pysqlite3 包。要使用 Conda-forge Channel。

https://anaconda.org/conda-forge/pysqlite3

Conda-forge is community-led channel that provides latest conda packages for a wide-range of software.

conda install -c conda-forge pysqlite3

分析

python3 不支持 pysqlite2 包,要安装 pysqlite3 包。

 类似资料: