can not start ipython notebook from anaconda

25,195

Could be a couple of things:

conda installs ipython into the active conda environment. If bash had seen a previous invocation of ipython it might have that location hashed.

Run hash -r to clear the shell hashed lookups after installing anything that places a new executable in your path. Things like:

  • ipython
  • pip
  • binstar
  • ...
Share:
25,195
Hello lad
Author by

Hello lad

Updated on October 01, 2020

Comments

  • Hello lad
    Hello lad over 3 years

    I have installed anaconda into my home directory and added the path to PATH os variable

    and installed ipython notebook in anaconda with command

    conda install ipython-notebook
    

    it works fine

    after that I opened terminal and typed in

    ipython notebook
    

    it reported

    Could not start notebook. Please install ipython-notebook
    

    Have I done something wrong on the installation?

    The output of

    conda list | grep ipython
    

    is

    ipython                   2.3.1                    py27_0  
    ipython-notebook          2.3.1                    py27_0  
    ipython-qtconsole         2.2.0                    py27_0
    
  • Hello lad
    Hello lad over 9 years
    thank you for your response @Phil Cooper. I have run hash -r in terminal and restart it, but still the same error report.