On 11 August 2016 at 11:13, Ludovic Ferrer <[email protected]> wrote:
> I am facing the same issue. I would like to clarify some terminologies. > what do you mean by "the python version that the kernel launches" ? how > could I get this information ? Inside a kernel, use 'sys.executable' to see which Python it's running, and 'sys.path' to see where it imports from. If you're installing with pip, you can install into a specific version of Python using the path you get from sys.executable, as in: path/to/python -m pip install ... -- You received this message because you are subscribed to the Google Groups "Project Jupyter" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/CAOvn4qgugazAwRR3SatV0h_M_AG28xB90oUNv4vPBpekCQjqDA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
