2016-05-30 124 views
14

这个问题类似于this之一。我试图调试pyethapp 具有以下配置:在pycharm中调试python代码

debug_app

入口点位于app.py。该代码运行正常不被调试的时候,但一旦我启动以下异常被抛出调试器:

Failed to import scrypt. This is not a fatal error but does 
mean that you cannot create or decrypt privkey jsons that use 
scrypt 

/usr/local/lib/python2.7/dist-packages/cffi/model.py:526: UserWarning: 'point_conversion_form_t' has no values explicitly defined; next version will refuse to guess which integer type it is meant to be (unsigned/signed, int/long) 
    % self._get_c_name()) 
Traceback (most recent call last): 
    File "/home/user/Utils/pycharm-community-2016.1/helpers/pydev/pydevd.py", line 1530, in <module> 
    globals = debugger.run(setup['file'], None, None, is_module) 
    File "/home/user/Utils/pycharm-community-2016.1/helpers/pydev/pydevd.py", line 937, in run 
    pydev_imports.execfile(file, globals, locals) # execute the script 
    File "app.py", line 27, in <module> 
    from console_service import Console 
    File "/home/user/Utils/pycharm-community-2016.1/helpers/pydev/_pydev_bundle/pydev_monkey_qt.py", line 71, in patched_import 
    return original_import(name, *args, **kwargs) 
    File "console_service.py", line 38, in <module> 
    @inputhook_manager.register('gevent') 
AttributeError: 'InputHookManager' object has no attribute 'register' 

解决方案建议here(重新安装IPython中)并没有解决问题(只在调试时发生;客户端当单独运行时工作)。

编辑:

输出命令行:

/usr/bin/python2.7 /home/user/Utils/pycharm-community-2016.1/helpers/pydev/pydevd.py --cmd-line --multiproc --qt-support --client 127.0.0.1 --port 59087 --file app.py --profile testnet --data-dir testnetState/ run 
warning: Debugger speedups using cython not found. Run '"/usr/bin/python2.7" "/home/user/Utils/pycharm-community-2016.1/helpers/pydev/setup_cython.py" build_ext --inplace' to build. 
pydev debugger: process 20493 is connecting 

Connected to pydev debugger (build 145.260) 

Failed to import scrypt. This is not a fatal error but does 
mean that you cannot create or decrypt privkey jsons that use 
scrypt 

/usr/local/lib/python2.7/dist-packages/cffi/model.py:526: UserWarning: 'point_conversion_form_t' has no values explicitly defined; next version will refuse to guess which integer type it is meant to be (unsigned/signed, int/long) 
    % self._get_c_name()) 
Traceback (most recent call last): 
    File "/home/user/Utils/pycharm-community-2016.1/helpers/pydev/pydevd.py", line 1530, in <module> 
    globals = debugger.run(setup['file'], None, None, is_module) 
    File "/home/user/Utils/pycharm-community-2016.1/helpers/pydev/pydevd.py", line 937, in run 
    pydev_imports.execfile(file, globals, locals) # execute the script 
    File "app.py", line 27, in <module> 
    from console_service import Console 
    File "/home/user/Utils/pycharm-community-2016.1/helpers/pydev/_pydev_bundle/pydev_monkey_qt.py", line 71, in patched_import 
    return original_import(name, *args, **kwargs) 
    File "console_service.py", line 38, in <module> 
    @inputhook_manager.register('gevent') 
AttributeError: 'InputHookManager' object has no attribute 'register' 
+0

您确定您的调试和非调试配置实际上使用相同版本的python? – pvg

+0

是的,我使用2.7.9进行调试并独立运行脚本。 – Sebi

+0

我的意思是安装,真的,而不是版本。也许检查'显示命令行'复选框。 – pvg

回答

1

这个错误是已知如果你使用IPython中的旧版本(其中的确方法register尚未实施)的情况发生。您大概会使用包含默认Python安装的OSX,在您的环境中可能存在一些冲突的Ipython副本,其中的不同版本由常规和调试配置调用?

通过将项目移动到根包无法干涉的虚拟环境,可能解决了此问题。

0

为了摆脱cython missing警告,运行:

python2 /.......git/liclipse/plugins/org.python.pydev_6.2.0.201711281546/pysrc/setu p_cython.py build_ext --inplace 

最后调试窗口保持干净,那些可怕的警告和杂乱的。