[Answer]-ImportError: No module named pyorbited.simple while running django-orbited

1👍

You installed orbited but you need to install pyorbited.

I can reproduce the same issue with only orbited installed:

% sudo pip install orbited
% python
>>> import orbited        # yes, this works but it's not what you need
>>> from pyorbited.simple import Client as OrbitedClient
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named pyorbited.simple

On the other hand, once we install pyorbited, it works:

% sudo pip install pyorbited
% python
>>> from pyorbited.simple import Client as OrbitedClient
>>>

Leave a comment