How do I compile pydev 5.9 debugging optimizations? -
i'm using eclipse neon.
when starting pydev debug configuration, pydev checks whether debugging optimizations available. if not, displays message in console:
warning: debugger speedups using cython not found. run '"/var/lib/something/python_env/bin/python2.7" "/home/user/.p2/pool/plugins/org.python.pydev_5.9.0.201708101613/pysrc/setup_cython.py" build_ext --inplace' build.
this command supposed compile optimizations make them available pydev. however, of version 5.9, appears impossible.
the following error message. previous versions of pydev compiled without error cython.
[~]$ "/opt/anaconda/bin/python2.7" "/home/jack/eclipse_neon/plugins/org.python.pydev_5.9.0.201708101613/pysrc/setup_cython.py" build_ext --inplace running build_ext building '_pydevd_bundle.pydevd_cython' extension gcc -pthread -fno-strict-aliasing -g -o2 -dndebug -g -fwrapv -o3 -wall -wstrict-prototypes -fpic -i/opt/anaconda/include/python2.7 -c _pydevd_bundle/pydevd_cython.c -o build/temp.linux-x86_64-2.7/_pydevd_bundle/pydevd_cython.o gcc: error: _pydevd_bundle/pydevd_cython.c: no such file or directory gcc: fatal error: no input files compilation terminated. error: command 'gcc' failed exit status 1
there no file named pydevd_cython.c
anywhere. how can compile optimizations? oversight occured during release of pydev 5.9?
Comments
Post a Comment