How to get an ipython graphical console on Windows 7?

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...)


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

I would suggest using a full package distribution like EPD (http://www.enthought.com/products/epd_free.php), which should work out of the box.

Otherwise the dependencies are

ZeroMQ, pyzmq, PySide or PyQt, and pygments,

And unfortunately we don't have enough users using windows to improve the install docs.


On Windows, the 32-bit version of EPD is free; it runs fine on Win7-64, though of course with a 32-bit address space. This EPD installer include ipython 0.12.1, which suffices for qtconsole. To update it to ipython 0.13.1 (important for ipython notebook), use the EPD command "enpkg ipython" (details here).

链接地址: http://www.djcxy.com/p/11820.html

上一篇: 绘制循环定时器(AndEngine)

下一篇: 如何在Windows 7上获得ipython图形控制台?