You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "", line 1, in
File "c:\users\kaila\appdata\local\programs\python\python39\lib\site-packages\billiard\spawn.py", line 165, in spawn_main
exitcode = _main(fd)
File "c:\users\kaila\appdata\local\programs\python\python39\lib\site-packages\billiard\spawn.py", line 207, in _main
self = pickle.load(from_parent)
ModuleNotFoundError: No module named 'config'
The text was updated successfully, but these errors were encountered:
OMG, I struggled all day long for this problem.
Finally, the solution was simple.
Celery doesn't support windows properly that's why you and I faced with 'prckle.load... ModuleNotFoundError'.
In windows, prefork pool opiton doesn't work, so install gevent and start up Celery with -P gevent option.
or just start -P solo
Traceback (most recent call last):
File "", line 1, in
File "c:\users\kaila\appdata\local\programs\python\python39\lib\site-packages\billiard\spawn.py", line 165, in spawn_main
exitcode = _main(fd)
File "c:\users\kaila\appdata\local\programs\python\python39\lib\site-packages\billiard\spawn.py", line 207, in _main
self = pickle.load(from_parent)
ModuleNotFoundError: No module named 'config'
The text was updated successfully, but these errors were encountered: