python - keys - show execution time jupyter notebook
ipython en MacOS 10.10-comando no encontrado (2)
Estaba intentando instalar jupyter con ''pip install jupyter''. http://jupyter.readthedocs.org/en/latest/install.html
Luego recibí un error similar al ejecutar ipython. Intenté todas las soluciones en Stackoverflow sobre la instalación de ipython.
Finalmente, instalé Anaconda y luego ejecuto conda install jupyter
. Ahora todo funciona bien.
Mi entorno:
- Python 2.7
- Mac OS X El Capitan
Estoy intentando que ipython funcione en Mac OS 10.10.
problema:
$ ipython
devoluciones
-bash: ipython: command not found
contexto:
Estoy ejecutando python2.7 en MacOS 10.10. Instalé Python vía brew. Alguna información:
which python
=
/usr/local/bin/python
brew info python
=
python: stable 2.7.10 (bottled), HEAD
Interpreted, interactive, object-oriented programming language
https://www.python.org
/usr/local/Cellar/python/2.7.10_2 (4977 files, 77M) *
Para instalar ipython, ejecuté
pip install ipython[all]
entonces ... pip show ipython =
---
Metadata-Version: 2.0
Name: ipython
Version: 4.0.0
Summary: IPython: Productive Interactive Computing
Home-page: http://ipython.org
Author: The IPython Development Team
Author-email: [email protected]
License: BSD
Location: /usr/local/lib/python2.7/site-packages
Requires: traitlets, pickleshare, simplegeneric, decorator, gnureadline, appnope, pexpect
finalmente, echo $PATH =
/Users/[username]/depot_tools:/usr/local:/usr/local/lib:/Users/[username]/depot_tools:/usr/local:/usr/local/lib:/usr/local/lib/python2.7/site-packages:/Users/[username]/depot_tools:/usr/local:/usr/local/lib:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/opt/X11/bin
¿Alguien puede decirme lo que estoy haciendo mal?
Me encontré con el mismo problema, pero resuelto. Debe asegurarse de instalar IPython al principio a través de este comando en la terminal.
$python -m IPython
Entonces mostrará este resultado:
¡Felicitaciones! Tuviste IPython en tu computadora.
Luego ejecuta este comando en la terminal.
alias ipython=''python -m IPython''
Finalmente, puedes probar el comando ipython nuevamente.
Puede agregar esta línea de comando en el archivo ~ / .bash_profile para permanente. Funciona bien para mí.