8

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
Assem
  • 11,574
  • 5
  • 59
  • 97
YayaYaya
  • 125
  • 2
  • 3
  • 10

1 Answers1

26

You should install python-bidi using this command:

easy_install python-bidi

or

pip install python-bidi
Assem
  • 11,574
  • 5
  • 59
  • 97