pip
andava bene ma oggi, quando ho provato ad usarlo, ho ricevuto questo messaggio:
-bash: pip: command not found
È strano. brew
mostra che il pacchetto python
da brew
è ancora installato, ma ora digitando python
nel terminale verrà eseguito per impostazione predefinita sul sistema invece:
~: brew install python
Warning: python 2.7.13_1 is already installed
~: python
Python 2.7.10 (default, Feb 7 2017, 00:08:15)
Cercando di importare i pacchetti che avevo non funzionava altrettanto bene:
~: python
>>> import cv2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named cv2
>>> import PIL
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named PIL
Se vado in /usr/local/lib/python2.7/site-packages/
, tutto sembra a posto. Stranamente funziona anche se digito
~: pip2 -V
pip 9.0.1 from /usr/local/lib/python2.7/site-packages (python 2.7)
~: python2
Python 2.7.13 (default, Jul 18 2017, 09:17:00)
>>> import cv2
>>>
Che cosa posso fare per ottenere pip
(e i miei pacchetti)?