VerbalExpressions / PythonVerbalExpressions

Python regular expressions made easy
1.63k stars 115 forks source link

No module named 'verbal_expressions' #18

Closed JavaProgrammerLB closed 8 years ago

JavaProgrammerLB commented 8 years ago

I am so glad to find this project,thank you. I open this issue for an Error when I use this modulue. After I executed 'pip install VerbalExpressions' in my x64 Windows 7 PC,I got a response:"Successfully installed VerbalExpressions-0.01".But when I use "from verbalexpressions import VerEx" I got an importError: "Traceback: File "", line 1, in File "D:\Python\lib\site-packages\verbalexpressionsinit.py", line 1, in < module> from verbal_expressions import VerEx, re_escape ImportError: No module named 'verbal_expressions' " How can i figure out this problem?

stsievert commented 8 years ago

I fixed this problem by activating a Python 2.7 virtualenv. I'm on Python 3.5 by default.

JavaProgrammerLB commented 8 years ago

@scottsievert Yes, I figured out this with your method.