I use Windows 10. Jupiter Lab is installed from Anaconda.
I want to associate ipynb
files with Jupyter Lab so that, when I double click on ipynb
file it should be opened using Jupyter Lab. How can I do it?
I use Windows 10. Jupiter Lab is installed from Anaconda.
I want to associate ipynb
files with Jupyter Lab so that, when I double click on ipynb
file it should be opened using Jupyter Lab. How can I do it?
Install nbopen
this is the documentation https://github.com/takluyver/nbopen
pip install nbopen
python -m nbopen.install_win
if it does not work change
python -m nbopen.install_win
for
ipython -m nbopen.install_win
after that would you can to open your *.ipynb
files with double click:
*Mark as answer if it solve your problem