ImportError: No module named IPython

Ok, finally i achieved my goal. I wrote ipython –version but i found, it was not installed. I tried to install it, with pip. I went to C:\Python27\Scripts, here is pip, you can try in this directory, or add to environment variables. I tried to install ipython, but i found a error error: Unable to … Read more

Spell Checker for Python

I’m fairly new to Python and NLTK. I am busy with an application that can perform spell checks (replaces an incorrectly spelled word with the correct one). I’m currently using the Enchant library on Python 2.7, PyEnchant and the NLTK library. The code below is a class that handles the correction/replacement. I have written a … Read more