[Django]-Django/Celery can't find importlib

8👍

importlib which was added in Python 2.7/3.1, I believe. You can download a port for pyton 2.5 here:

Also check the setup.cfg for celery near the bottom and make sure all the other requirements are met (toward the bottom of the script).

👤ars

1👍

importlib was added to Python in version 3.1, and then backported to Python 2.7. Third party backports are available on PyPI.

Also note that ‘backported to 2.7’ doesn’t imply that all versions after 2.7 will have importlib. Python 3.0, I believe, does not have importlib.

👤jonesy

Leave a comment