I am just getting up and running with DEAP, and I am enjoying it very much. I was referred to this group from twitter, so here is my current issue:
I have attempted to implement SCOOP. I installed the module, and am calling my code through the scoop module (python -m scoop mycode.py).
Traceback (most recent call last):
File "C:\Python27\lib\runpy.py", line 162, in _run_module_as_main
"__main__", fname, loader, pkg_name)
File "C:\Python27\lib\runpy.py", line 72, in _run_code
File "C:\Python27\lib\site-packages\scoop\bootstrap\__main__.py", line 99, in <module>
File "C:\Python27\lib\site-packages\scoop\futures.py", line 51, in _startup
result = _controller.switch(rootFuture, *args, **kargs)
File "C:\Python27\lib\site-packages\scoop\_control.py", line 83, in runController
File "C:\Python27\lib\site-packages\scoop\_types.py", line 261, in pop
File "C:\Python27\lib\site-packages\scoop\_types.py", line 284, in updateQueue
for future in self.socket.recvFuture():
File "C:\Python27\lib\site-packages\scoop\_comm.py", line 62, in recvFuture
File "C:\Python27\lib\site-packages\scoop\_comm.py", line 58, in _recv
return pickle.loads(msg[1])
AttributeError: 'module' object has no attribute 'Individual'
Exception TypeError: "'NoneType' object is not callable" in <zmq.core.socket.Socket object at 0x00000000061499A8> ignored
Exception TypeError: "'NoneType' object is not callable" in <zmq.core.socket.Socket object at 0x0000000006149A08> ignored
My code runs fine without the scoop module. Any ideas what might cause this?