Running jupyter ipynb with atom

I installed atomand jupyter packagefor atom here . Now, if I open old ipython laptops from atom, it does not display it as a notebook. Here is the old notes in atom,

{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {
    "collapsed": false
   },
   "outputs": [],
   "source": [
    "#importing all the libraries\n",
    "import numpy as np\n",
    "import pandas as pd\n",
    "import sys \n",
    "sys.path.append(\"/Users/myname/Documents/things")\n",
    "import quadedge as qd\n",
    "sys.path.append(\"/Users/myname/Documents/otherthings\")\n",
    "import latdevcode as latdev\n",
    "import cendevcode as latgen\n",
    "import matplotlib.pyplot as plt"
   ]
  },   

Am I missing something? How to make the navigator directly open jupyter notebookin atomand correctly?

+4
source share
1 answer

These are not even old notebooks. I just installed python (3.6.3) and jupyter (4.3.0), created a couple of laptops via the Jupyter CLI (nteract), but when I tried to open them in an atom, I also had a JSON version.

, Hydrogen jupyter (, .py .R), .ipynb .ipynb.

:
- https://github.com/nteract/hydrogen/issues/75
- https://github.com/nteract/hydrogen/issues/1154

0

Source: https://habr.com/ru/post/1659037/


All Articles