我在IntelliJ IDEA 2017.1.2中。我最近将一个模块从mod_plus
重命名为exp-packs
,现在我一直收到错误消息:
Error Loading Project: Cannot load module mod_plus
旧模块不存在。在文件 - >下项目结构 - >模块 - >依赖项它没有显示,是那里,但是当我第一次看到错误时我删除了它。它不会显示在.iml文件中:
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module" module-name="Pyhton-Snippets" />
<orderEntry type="module" module-name="exp_packs" />
</component>
</module>
在事件日志中,当我单击“详细信息”并询问是否要删除时,我单击“是”并且该会话已消失,但重新启动时会返回。关于如何摆脱它的任何想法?
答案 0 :(得分:3)
IntelliJ IDEA根据.idea/modules.xml
文件加载模块,其中包含.iml
文件的相对路径。
如果使用重构在IntelliJ IDEA中重命名模块,modules.xml
文件会自动更新。在其他情况下,您可能需要手动更新路径。