Estou usando o python 2.7 no Mac OS X (10.7).
Eu tenho tentado instalar o OpenCV, mas sem sucesso. Em uma tentativa de instalar corretamente o OpenCV, experimentei a versão MacPorts do OpenCV, e mudei o link python para a versão MacPorts usando o comando sudo port select --set python
. No entanto, eu realmente gostaria de manter o comando python
para vincular a /usr/bin/python
em vez de seu link atual de /opt/local/bin/python
.
A propósito, por que os comandos mostrados abaixo geram resultados diferentes?
Unknown:~ jake$ which python
/opt/local/bin/python
Unknown:~ jake$ whereis python
EDITAR
doesn't port select give you some other options?
Obrigado pela sugestão.
Última tentativa:
$ port select python
Available versions for python:
none
python25-apple
python26-apple
python27 (active)
python27-apple
$ port select python27-apple
Warning: Unable to get active selected version: The specified group 'python27-apple' does not exist.
Error: The 'list' command failed: The specified group 'python27-apple' does not exist.
Eu não estava usando a versão da Apple (acredito que a Apple forneceu apenas 2.6). No entanto, recebi o python que eu estava usando anteriormente de python.org . Então, não tenho certeza de qual comando com port select python
devo usar para alternar para essa versão.
Obrigado slhck
por sua ajuda e sugestões.