模块错误:没有名为“darkdetect”的模块

问题描述 投票:0回答:1

我下载了一个名为customtkinter的模块。这个模块本身需要我下载 darkDetect,所以我都下载了。请看下面这个。

enter image description here

但是,当我运行以下代码时,我收到 ModuleNotFoundError。

import tkinter
import customtkinter

enter image description here

我尝试重新安装 customtkinter 和 darkDetect,但遇到了同样的问题。这也是我的目录的图片(我从this github下载了customtkinter源代码并将其保存在我的项目文件夹中)

enter image description here

python user-interface tkinter customtkinter
1个回答
0
投票

我遇到了同样的问题。检查我的目录一段时间后,我发现

pip install <lib>
将软件包安装在 anaconda 文件夹上。

我从设备中卸载了 anaconda,然后使用

pip install <lib>
再次安装了软件包,问题就消失了。

© www.soinside.com 2019 - 2024. All rights reserved.