An example is the
multiprocessing.Process
, and another pymc.Binomial
. What may puzzle you is that the Python script runs fine in Eclipse or on Terminal. The problem is the result that some classes are dynamically generated at runtime.PyDev actually has a solution to address this issue as discussed in its FAQ. The solution is via "Forced buildin libs" as discussed in its manual.
To add the
multiprocessing
and pymc
package as buildin libraries, we do the following. - Go to: window > preferences > PyDev > Interpreter - (Python/Jython/IronPython).
- Choose the interpreter you have installed in your computer.
- Select "Forced Buildins".
- Choose "New", add "multiprocessing", and confirm it.
- Choose "New" again, add "pymc", and confirm it.
Note that you may have to restart Eclipse to see the effect.
thanks for post and all aboutalljobs
ReplyDelete