我能够在Windows中运行Odoo v8代码。但是当我调试代码时,会发生错误:

ppid = os.getppid()

AttributeError: 'module' object has no attribute 'getppid'


环境:

Windows 7,eclipse,pydev,Odoo v8代码(几天前的最新代码),调试模式。

最佳答案

只需从python包中卸载gevent

pip uninstall gevent


这样您就可以在正常或调试模式下运行Odoo服务器。

关于python - Odoo AttributeError:'模块'对象没有属性'getppid'— Windows os.getppid,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27718821/

10-12 22:02