IPython laptop installation error

I am having trouble working my ipython after regularly updating python. If I print:

ipython notebook --pylab inline

I get the following error:

-bash: /usr/local/bin/ipython: No such file or directory

If I print:

which ipython

I get no response, just a command prompt. if I print:

which python

I get

/usr/bin/python

if I type:

ipython --version

I get the following error:

-bash: /usr/local/bin/ipython: No such file or directory

When I test my system, I see that my Ipython is installed in:

/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/Ipython

What should I do to enable ipython function again? I had to fix the links for pip and easy_install to make them work after installing python. I just can't get ipython to work again.

+4
source share
3 answers
pip install -U "ipython[notebook]"

sudo :

sudo pip install -U "ipython[notebook]"

pip pip3, Python 3.

.

0

Canopy ( Anaconda) . , , . Canopy iPython, . , / , , ect python.

. .

PS. , , : -)

0
0

All Articles