我试图用Python 3运行基本的pyforms程序,但是得到以下错误:
import pyforms
File "C:\Python36\lib\site-packages\pyforms\__init__.py", line 4, in <module>
import loggingbootstrap
ModuleNotFoundError: No module named 'loggingbootstrap'
我确定我必须遗漏一些明显的东西,因为Google上没有此模块的痕迹。
答案 0 :(得分:1)
我也碰到了这个。似乎有一个未记录的依赖于此模块:https://bitbucket.org/fchampalimaud/logging-bootstrap
您可以使用pip install git+https://bitbucket.org/fchampalimaud/logging-bootstrap.git
安装它。
(作为旁注,Pyforms目前很难安装,因为它的文档很差,并且有些深奥的依赖。这只是我遇到的几个问题之一。我正考虑在项目中使用它,但现在决定寻找别的东西,因为其他人需要能够顺利安装我的产品。)
答案 1 :(得分:1)
安装PyForms for Python 3时,不应直接从pypi安装PyForms本身和2个依赖项。相反,你想使用:
pip install git+https://github.com/UmSenhorQualquer/pyforms.git --upgrade
pip install git+https://github.com/UmSenhorQualquer/pysettings.git --upgrade
pip install git+https://bitbucket.org/fchampalimaud/logging-bootstrap.git
答案 2 :(得分:0)
我也得到了这个确切的错误。我刚刚在 init 中注释了导入,但它似乎没有破坏任何东西。这可能是一个可怕的解决方案,但它确实有效。