- Have downloaded acitoolkit from github, unpacked the zip and run the install on mac by issuing "sudo python setup.py install" command but when tried to import the module using "from acitoolkit.acitoolkit import *", getting the exception below.
>>> from acitoolkit.acitoolkit import *
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "acitoolkit/__init__.py", line 23, in <module>
from .acibaseobject import Tag # noqa
File "acitoolkit/acibaseobject.py", line 38, in <module>
from .acisession import Session
File "acitoolkit/acisession.py", line 46, in <module>
from six.moves.queue import Queue
ImportError: No module named queue
Add this to your .bash_profile
export PYTHONPATH=/Library/Python/2.7/site-packages/:$PYTHONPATH
and
$ sudo easy_install bpython
Comments
0 comments
Please sign in to leave a comment.