为什么为什么不断出现此“没有名为utils的模块"错误?
问题描述:
我尝试在Jupyter笔记本中导入factor_analyzer.但是我遇到了一个错误,说最近没有从python 3切换到2的模块名为utils".Python 3从来没有这个问题.我该如何解决?-Samuel Duraivel
I tried importing factor_analyzer in Jupyter notebook. But I got this error that says 'no module named utils' I recently switched from Python 3 to 2; never had this issue with Python 3. How do I fix this? - Samuel Duraivel
答
似乎系统上未安装 utils
模块.尝试使用pip安装它:
It seems the utils
module is not installed on the system. Try installing it with pip :
python -m pip install utils