tl;dr Après avoir vu l'entrée Hatena, j'ai voulu toucher Jupyter. http://myenigma.hatenablog.com/entry/2016/02/20/183423?utm_source=dlvr.it&utm_medium=twitter
MacOSX El Capitan Python2.7
Une erreur s'est produite lors de la tentative d'installation de Jupyter.
pip install jupyter
Installing collected packages: setuptools, gnureadline, appnope, ptyprocess, pexpect, ipython, ipykernel, notebook, ipywidgets, jupyter-console, qtconsole, jupyter Found existing installation: setuptools 18.4 Cannot remove entries from nonexistent file /anaconda/lib/python2.7/site-packages/easy-install.pth
La cause est que les outils de configuration fournis avec Anaconda que j'ai installés auparavant sont anciens. https://github.com/ContinuumIO/anaconda-issues/issues/542
conda update setuptools
Après l'avoir exécuté à nouveau, il semble qu'il a été installé.
pip install jupyter
Commencez comme un essai.
ipython notebook
Ensuite, l'onglet URL suivant a été ouvert dans le navigateur par défaut, et j'en suis venu à toucher Jupyter. http://localhost:8888/tree
À l'arrêt, appuyez sur Control-C dans le terminal.
Recommended Posts