Import Unresolved ( Not Recognized ) In Pydev
I am mostly a Java developer learning Python these days. I have PyDev in Eclipse and I've properly configured, I believe. Why? Because I am able to run Python programs in my Eclips
Solution 1:
Humm, it seems that PyDev isn't recognizing the file C:\\Programs\\Anaconda3\\lib\\site-packages\\cx_Oracle.cp36-win_amd64.pyd
as the cx_Oracle
module (Python 3 has a new naming convention for compiled modules which PyDev isn't recognizing that well right now).
This is a bug in PyDev (I'll take a look at that). In the meanwhile, adding cx_Oracle
to the list of forced builtins
should do the trick. See: http://www.pydev.org/manual_101_interpreter.html#PyDevInterpreterConfiguration-ForcedBuiltins for more details on how to actually set that.
Post a Comment for "Import Unresolved ( Not Recognized ) In Pydev"