IPython not available in Spyder

I do not think that I am suffering from a problem in this closely related issue .

I am running Linux Mint 16 (based on Ubuntu 13.10) and have Spyder 2.2.5 and IPython 0.13.2.

In the menu, InterpretersI see only Open a Python interpreter..., and not an option to open, the IPython interpreter.

Is there anything I need to do to "show" Spyder where IPython "is"?

Here is the output of my "additional dependencies":

IPython >=0.13  :  0.13.2 (OK)
matplotlib >=1.0:  1.2.1 (OK)
pep8 >=0.6      :  None (NOK)
pyflakes >=0.5.0:  0.7.3 (OK)
pylint >=0.25   :  None (NOK)
rope >=0.9.2    :  0.9.2 (OK)
sphinx >=0.6.6  :  1.1.3 (OK)
+4
source share
7 answers

IPython ViewWindowsIPython console... ? , : ,

import IPython
IPython.start_ipython()
+6

IPython Spyder (2.3.8) IPython 4.1.1.

/ qtconsole:

pip install -U qtconsole

. https://github.com/spyder-ide/spyder/issues/2608#issuecomment-130586847

+11

(Spyder3.0.0dev) :

Help -> Optional dependencies

, IPython . Spyder, IPython,

sudo pip3 install ipython --upgrade

Python2:

sudo pip install ipython --upgrade

Spyder. ! IPython

+8

, ipython-qtconsole. Mint OS:

sudo apt-get install ipython-qtconsole

.

https://pythonhosted.org/spyder/installation.html ,

+3

python 3, Mint OS

sudo apt-get install ipython3-qtconsole
+2
sudo pip3 install ipython --upgrade
sudo pip3 install qtconsole --upgrade

!

+1

Windows 10 Linux Mint , Spyder3, Ipython, Python-tk Ipython3-qtconsole, , Ipython Python-tk . Spyder3 " IPython", .

0

Source: https://habr.com/ru/post/1528114/


All Articles