I'm writing some codes on ipython notebook.
I have both versions of python installed(in my virtualenv), and I normally open ipython notebook with the command below.
ipython notebook my_notebook.ipynb
However, the command above opens the notebook with python 2.7 whereas I need to open it with python 3.
I tried to install ipython3 to use,
ipython3 notebook my_notebook.ipynb
but it cannot be installed on my machine at the moment. And I'd not want to install Anaconda on my machine as well.
Can anyone please suggests me the way that I can open the notebook with python 3?
Thanks in advance.