I've searched through SO, but haven't found a clear answer to what I'm trying to do. If the answer already exists, I'd appreciate a pass-along of the URL. For reference: I'm new to running multiple Python versions, and can run code through both interpreters. I'm on Windows 7, and used the anaconda distribution.
In my cmd
, I've activated Python2.7 as default. To access Python2.7 and Python3.4, I use python
and py -3
respectively. I'd like to be able to open IPython browser notebooks for 2.7 and 3.4 in parallel, but am not sure how the command would look/how to determine which browser window is using which interpreter.
From @Jonas Buckner's comment on How to activate Ipython Notebook and QT Console with Python 3.4 in Anaconda 2.0, it seems that I can specify the port. My question is, how do I know which port # is associated with each version? Is this fixed, or is there some way I can determine which port?
ipython notebook not launching mentions ipython
vs ipython3
, which I would really prefer, to the port method. However, when I try ipython3 notebook
, I get:
'ipython3' is not recognized as an internal or external command, operable program, or batch file.
Is it possible to set up an alias? If so, how?
To reiterate from above, once I've opened notebooks in parallel, is there a way for me to tell which notebook is which version?
Thanks in advance!