I wanted to be able to use both python 2.x and 3.x so I installed multiple kernels as follows, as per the instructions in this question (Using both Python 2.x and Python 3.x in IPython Notebook)
To configure the python2.7 environment:
conda create -n py27 python=2.7`
source activate py27`
conda install notebook ipykernel`
ipython kernel install --user
and
To configure the python3.5 environment:
conda create -n py35 python=3.5
source activate py35
conda install notebook ipykernel
ipython kernel install --user
Now I can choose between python 2 and 3 in the notebook. But when I tried to import either numpy or pandas I get the import error
Import error:No module named numpy
I tried to uninstall Anaconda and reinstall it and then install jupyter notebook, NOW I Cannot even start jupyter notebook it says 'Kernel Error'
Can some one please help me out?