Después de actualizar a OS X Mavericks, parece Python se rompió. Me sale el siguiente cuando intento ejecutar ipython
:
~ $ ipython
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/2.7/bin/ipython", line 5, in <module>
from pkg_resources import load_entry_point
ImportError: No module named pkg_resources
Del mismo modo me di cuenta de que algunos otros paquetes que parecen estar ausentes, incluso cuando se utiliza el valor predeterminado python
(en oposición a ipython
):
~ $ python
Python 2.7.3 (v2.7.3:70274d53c1dd, Apr 9 2012, 20:52:43)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named numpy
numpy
trabajó definitivamente antes de la actualización. Alguna idea sobre lo que podría estar causando esto?
Actualización: Acabo de notar que la ejecución de la sudo easy_install numpy
hace numpy
trabajar de nuevo. Se da la siguiente salida:
WARNING: Improper use of the sudo command could lead to data loss
or the deletion of important system files. Please double-check your
typing when using sudo. Type "man sudo" for more information.
To proceed, enter your password, or type Ctrl-C to abort.
Password:
Searching for numpy
Best match: numpy 1.6.2
Adding numpy 1.6.2 to easy-install.pth file
Using /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python
Processing dependencies for numpy
Finished processing dependencies for numpy
Estoy 100% seguro de que me había numpy ya instalado cuando la máquina era todavía el sistema operativo OS X Mountain Lion. Necesito reinstalar todos mis paquetes de python ahora? Si es así ¿hay una manera fácil de hacer esto automáticamente?