Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No module named bidi.algorithm

I download this here, run it with:

python setup.py test 

in my cmd, I have python 2.7 but i get this error:

Traceback (most recent call last):
File "C:\Users\CLIENT\Desktop\IMPLEMENTATION\Affichage.py", line 31, in    <module>
from bidi.algorithm import get_display
ImportError: No module named bidi.algorithm
like image 533
YayaYaya Avatar asked May 30 '16 16:05

YayaYaya


1 Answers

You should install python-bidi using this command:

easy_install python-bidi

or

pip install python-bidi
like image 89
Assem Avatar answered Oct 04 '22 02:10

Assem