ImportError: o Ipython requer o Python versão 2.7 ou 3.3 ou superior

0

Estou tentando usar o ipython notebook. Mas quando eu executo ipython notebook, isso me dá um erro abaixo. Eu tenho o ipython 2.7 e 3.3. Mas mesmo que não consiga detectar o ipython 2.7. Como posso anexar o caminho sem excluir os caminhos anteriores.

ihn@cri8:/home/ihn/packages$ ipython notebook
Traceback (most recent call last):
 File "/usr/local/bin/ipython", line 7, in <module>
from IPython import start_ipython
 File "/usr/local/lib/python3.2/dist-packages/IPython/__init__.py", line 33, in <module>
raise ImportError('IPython requires Python version 2.7 or 3.3 or above.')
ImportError: IPython requires Python version 2.7 or 3.3 or above.

se eu digitar

$ which python
/usr/bin/python

$ python -V
Python 2.7.3

Eu posso usar EXPORT = caminho $ caminho. Mas nesse caso, ele excluirá meus caminhos anteriores no arquivo bashrc. Como posso acrescentar este caminho?

    
por khan 27.05.2015 / 03:13

1 resposta

0

Abra o terminal e digite:

sudo apt-get install ipython3 ipython3-notebook  

Para iniciar o tipo de bloco de anotações do Interactive Python 3 html:

ipython3 notebook  

Para iniciar o notebook Python com sistema de plotagem baseado em Python ( python-matplotlib ):

ipython notebook --pylab  

ou para Python 3 e python3-matplotlib:

ipython3 notebook --pylab
    
por karel 27.05.2015 / 03:27