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?
source
share