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

后端 未结 7 1738
借酒劲吻你
借酒劲吻你 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:14

    On ubuntu, I needed to do the following in a terminal:

    1. sudo apt-get install build-essential
    2. sudo apt-get install python3-dev

    I then copied the full setup path from the error in eclipse and onto my command prompt: python "/home/mark/.eclipse/360744347_linux_gtk_x86_64/plugins/org.python.pydev.core_6.5.0.201809011628/pysrc/setup_cython.py" build_ext --inplace

    It finally compiled and the error message no longer appears.

    0 讨论(0)
提交回复
热议问题