本文介绍了如何在Windows 10上将ipynb文件与Jupyter Lab(来自Anaconda)关联的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用Windows10.Anaconda已安装Jupiter Lab.
我想将 ipynb
文件与Jupyter Lab相关联,这样,当我双击 ipynb
文件时,应该使用Jupyter Lab将其打开.我该怎么办?
解决方案
安装 nbopen
这是文档
* 如果解决了您的问题,请标记为答案
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
这篇关于如何在Windows 10上将ipynb文件与Jupyter Lab(来自Anaconda)关联的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!