如何将 Jupyter Notebook 添加到 Windows 10 默认应用程序?当我尝试更改文件类型的默认应用程序时,.ipynb
我无法在默认应用程序列表中看到 Jupyter Notebook,也没有选项可供选择。
我如何将其添加到默认应用程序列表?
答案1
安装nbopen
:https://github.com/takluyver/nbopen
pip install nbopen
python -m nbopen.install_win
现在你可以双击*.ipynb
文件了。
来源 -https://stackoverflow.com/questions/47267932/associate-ipynb-files-with-jupyter-notebook-in-windows-10-anaconda
答案2
打开 Anaconda 然后输入:
pip install nbopen
python -m nbopen.install_win
然后为您的笔记本选择默认的 python 应用程序,它将自动在与您的文件扩展名匹配的笔记本中打开。