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

后端 未结 7 1776
借酒劲吻你
借酒劲吻你 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 05:56

    Installing PyDev plugin in eclipse doesn't enough to run python (*.py) file. This error will come if Microsoft Visual C++ Compiler for Python 2.7 is not installed, So if you look error message in eclipse console there you can find a link how to install this python compiler, what you can simply do is,

    1.Download Microsoft Visual C++ Compiler for Python 2.7 from http://aka.ms/vcpython27

    2.Install downloaded package (.msi)

    3.Go to command prompt in windows and change directory to "cd python27"

    4.Run C:\Users\xyz\ \org.python.pydev.core_6.3.2.201803171248\pysrc\setup_cython.py build_ext --inplace

    5.Hit enter and wait unless compiler plugin install.

    Voila! You have now installed python compiler.

    Hope so It will help you. In my case it worked. Thanks!!!

提交回复
热议问题