如何在Spyder中打开.ipynb文件?
如果不使用 iSpyder DOS shell 命令,如何在 Windows 上直接在 Spyder 中打开 .ipynb(Jupyter Notebook)?甚至在线 Jupyter Notebook 站点也会提示输入存储文件的相对目录路径。
- 为什么没有一些东西可以在不输入一堆目录命令的情况下加载 Notebook 的外观,
- 为什么 Spyder 的 RUN 按钮在加载 .ipynb 文件时会变灰?
- 我不知道 .ipynb 文件格式与常规 .py 文件相比是什么
在 Spyder 中加载时 .ipynb 的开头行是:
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"ExecuteTime": {
这看起来一点也不像 python 代码
回答
你可以查看https://github.com/spyder-ide/spyder-notebook
安装后,您可以在 spyder 中打开本机 .ipynb 文件
从网站:
Spyder plugin to use Jupyter notebooks inside Spyder.
Currently it supports basic functionality such as creating new notebooks, opening any notebook in your filesystem and saving notebooks at any location.
You can also use Spyder's file switcher to easily switch between notebooks and open an IPython console connected to the kernel of a notebook to inspect its variables in the Variable Explorer.