I've just installed Python 2.7 on windows along with IPython.
I'm used to running IPython from within Emacs on Linux, e.g.
M-x shell
ipython
In Windows it won't work as easily, and it's very annoying. First, make sure you have installed pyreadline.
Next, I have got it working with a bat file that is in my system path containing:
[ipython.bat]
@python.exe -i C:\devel\Python\2.7-bin\Scripts\ipython.py --pylab %*
Next get python-mode.el and delete ipython.el. The latter is deprecated and python-mode includes its functionality.
Change the path of the ipython.py file accordingly and save it. Now in your Emacs do the following in your init.el file.
(custom-set-variables
'(py-shell-name "ipython.bat"))
Alternatively, to achieve the last step, do C-h v <RET> py-shell-name and customize it and change it to ipython.bat or the full path of your ipython.bat if the scripts directory is not in your system path. Save for future sessions.
That should get your IPython shell working. There is one more caveat if you want multiple interactive matplotlib figures without hanging your IPython console. The only way I could get around this issue was to use IPython 0.10 instead of the current version.