Pydev debugger: critical warning: this version of python seems to be incorrectly compiled (internal generated filenames are not absolute)

Explanation:

The given warning message indicates that the Python version being used in the PyDev debugger is not correctly compiled. The problem lies in the generation of internal filenames, which are not absolute as expected. This issue can cause unexpected behavior or errors in the debugger.

Example:

Let’s say you are using PyDev debugger with Python 3.8.1. If this specific version of Python has been incorrectly compiled, you may encounter the mentioned warning message. The debugger might still work, but there could be potential issues due to the incorrect compilation.

Leave a comment