Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5110912 By: fabioz
Are you configuring those to be in the project pythonpath or in the interpreter pythonpath? Actually, it should work without any special configuration. The problems on that may be: 1. You're constantly changing the module, so, for each new token you may have to use ctrl+2 then 'kill' (this will restart the python shell that has been spawned to make a dir() in the module) -- restarting eclipse would also work for that. 2. You're running eclipse from a shell that does not have the needed environment variables so that it can import that dll Basically, if from the same shell you launched eclipse you're able to start a python interpreter, import that dll (import fitin) and do a dir(fitin) and it returns the modules correctly, things should work... Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Pydev-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/pydev-users
