本文介绍了PyException:ImportError:没有名为domreg的模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

从chaquopy androi应用程序python控制台运行此脚本("from xml.dom import minidom")时出现以下错误.

I am getting the below error while running this script ("from xml.dom import minidom") from chaquopy androi application python console.

PyException: ImportError: No module named domreg

推荐答案

存在一个错误,该错误阻止隐式相对导入在启用导入挂钩的情况下工作.这已在版本0.4.4中修复,该版本现已提供( https://github.com/chaquo/chaquopy/issues/12 ).

There was a bug which prevented implicit relative imports from working with the import hook enabled. This has been fixed in version 0.4.4 which is available now (https://github.com/chaquo/chaquopy/issues/12).

这篇关于PyException:ImportError:没有名为domreg的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 07:56