You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would you accept a PR that makes it so that upon installing PyJulia, a python-jl-based Jupyter kernel is installed (if Jupyter is present)? I can write this.
It is very common to have multiple Python virtual environments. I think it would be impossible to sanely handle situation where you install one kernel in environment A and then after in environment B.
Having said that, I think it is a good idea to have something equivalent to python -m ipykernel install (say python -m julia.ipykernel install --python-jl). We can also solve #223 with this.
I'm still interested in the kernel installer, that's fine that its not auto-installed. Should I work on that (I think it's not much work) or do you think it's not worth it given how close you may be on getting rid of python-jl entirely?
I think it's still better to have python -m julia.ipykernel install command due to #223. Adding --python-jl flag for this command to choose python-jl as a "backend" sounds good to me (unlike python-jl -m IPython, there is no obvious command to do this ATM).
Activity
tkf commentedon Apr 5, 2019
I'm against for auto-install because
python-jl
at some point (not very soon, though). I think Generate system image with PyCall in "PyJulia-mode" #256 and Use python binary instead of libpython when it's a PIE PyCall.jl#612 are the better way.Having said that, I think it is a good idea to have something equivalent to
python -m ipykernel install
(saypython -m julia.ipykernel install --python-jl
). We can also solve #223 with this.marius311 commentedon Apr 8, 2019
I'm still interested in the kernel installer, that's fine that its not auto-installed. Should I work on that (I think it's not much work) or do you think it's not worth it given how close you may be on getting rid of
python-jl
entirely?tkf commentedon Apr 8, 2019
I think it's still better to have
python -m julia.ipykernel install
command due to #223. Adding--python-jl
flag for this command to choosepython-jl
as a "backend" sounds good to me (unlikepython-jl -m IPython
, there is no obvious command to do this ATM).marius311 commentedon Apr 8, 2019
Sounds good, that's what I'll aim for.