I am attempting to install a python 3 kernel for my ipython notebook using anaconda. This is to enable me use Python 2 or 3 when needed. So I found the commands below on this stackoverflow page Using both Python 2.x and Python 3.x in IPython Notebook
conda create -n py35 python=3.5
source activate py35
conda install notebook ipykernel
ipython kernel install
The issue is after installing python 3.5 the source activate py35
command gives source is not recognized as an internal or external command, operable program or batch file
error and when I use activate py35
, I get a the input line is too long
Please is there a way to fix this error?