How To Associate Ipynb Files With Jupyter Lab (from Anaconda) On Windows 10
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 Jup
Solution 1:
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
Post a Comment for "How To Associate Ipynb Files With Jupyter Lab (from Anaconda) On Windows 10"