How to get an ipython graphical console on Windows 7?

ipython

Solution

After installing and adding Python paths to your Environment Variables:

Open Windows command line (cmd.exe) and run:

pip install ipython[all]

or as recommended by official site:

pip install qtconsole

After pip finished installing all the packages, you can start the ipython qtconsole by running:

ipython qtconsole

or

jupyter qtconsole

Problem

Where can I find step-by-step instructions to install the modules required by `ipython qtconsole` in Windows 7 (64-bit)? (Sorry for the brevity of this question. It would take literally hours for me to write down all the things I have attempted, and nearly as long for anyone to read it. I'll just note that everything that I have found even remotely related to pyqt4 seems extremely Unix-specific, with at most a cursory nod at what Windows users may try...)

Original source

Related problems