On Ubuntu 15.04, I had ipython2 installed correctly and working with notebook, under the condition that I added "/usr/local/lib/python2.7/dist-packages" to the PYTHONPATH.
Now, I installed python3 and ipython3. ipython3 notebook works perfectly (provided I remove the above reference from the pythonpath). But ipython2 notebook returns
Could not start notebook. Please install ipython-notebook
regardless of the PYTHONPATH.
I have python2 and python3 installed in /usr/bin/ and ipython2 and ipython3 installed in /usr/local/bin. The ipythons were installed with pip and pip3.
Now, if I do install ipython-notebook, it installs (I think) another ipython in /usr/bin, which also doesn't work.
This is a bit confusing, in other words I have a mess of python distributions. Next time I should use anaconda, I know. But at the moment I would like to stick to this. How do I make it work?