Reputation: 69
when starting eclipse and starting my pydev project, I get this message:
Can somebody help, is this related to my recent ubuntu update?
Best regards HA
Upvotes: 0
Views: 51
Reputation: 25362
Probably your interpreter configuration is wrong.
-- this could be due to an OS update if you're using the OS interpreter for development (usually I recommend using miniconda: https://docs.conda.io/en/latest/miniconda.html to setup a separate environment and using it instead of the OS interpreter).
So, to fix you can try to remove the existing interpreter from the interpreter list and add a new interpreter -- even if at the same location (in Preferences > PyDev > Interpreters > Python interpreter
).
Upvotes: 0