Eclipse pydev warning - “Debugger speedups using cython not found.”

后端 未结 7 1746
借酒劲吻你
借酒劲吻你 2021-02-19 05:14

I get this warning while running a python program (some basic web automation using selenium):

warning: Debugger speedups using cython not found. Run \'\

7条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-19 06:04

    This is as expected. Run"/usr/bin/python3.5" "/root/.p2/pool/plugins/org.python.pydev_4.5.5.201603221110/pysrc/setup_cython.py" build_ext --inplace as it asks to get the debugger accelerations.

    (Nb. The error in the comment below was because this answer was missing an initial double quote.)

    Ideally run it from within your virtual environment, if you use one, to make sure you run this for the correct Python version. You'll need to run this once per Python version you use.

提交回复
热议问题