ModuleNotFoundError:没有名为“ missingpy”的模块

当我尝试使用Jupyter jotebook在conda环境中运行from missingpy import KNNImputer时,出现此错误:

ModuleNotFoundError 
Traceback (most recent call last)
<ipython-input-4-b17e25e76e3e> in <module>
----> 1 from missingpy import KNNImputer

ModuleNotFoundError: No module named 'missingpy'

我正在使用Windows。我试图在conda中获取它们没有的库,但是Python本机库具有它。如何安装本机Python库?

bonaxi 回答:ModuleNotFoundError:没有名为“ missingpy”的模块

您确定有吗?

如果您运行此程序,请确保已安装

pip install missingpy

如果仍然出现错误,则您可能处于错误的环境中

本文链接:https://www.f2er.com/3140081.html

大家都在问