Bibliotecas Python não são atualizadas, exceto em ipython

1

Eu usei o pip para atualizar e instalar algumas bibliotecas em um computador que tinha uma versão antiga do Numpy. Mas isso não parece ser realmente aplicado:

davidm@illergard:~$ python
Python 2.7.3 (default, Feb 27 2014, 19:58:35) 
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
>>> numpy.__version__
'1.6.1'

O Ipython, por outro lado, vê as novas bibliotecas:

davidm@illergard:~$ ipython
Python 2.7.3 (default, Feb 27 2014, 19:58:35) 
Type "copyright", "credits" or "license" for more information.

IPython 2.1.0 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.

In [1]: import numpy

In [2]: numpy.__version__
Out[2]: '1.8.1'

Isso sugere que o Ipython está executando um Python diferente. Vamos ver:

davidm@illergard:~$ which python
/usr/bin/python
davidm@illergard:~$ which ipython
/usr/local/bin/ipython

davidm@illergard:~$ cat /usr/local/bin/ipython
#!/usr/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'ipython==2.1.0','console_scripts','ipython'
__requires__ = 'ipython==2.1.0'
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.exit(
        load_entry_point('ipython==2.1.0', 'console_scripts', 'ipython')()
    )

O shebang corresponde ao mesmo Python! Virtualenv não está instalado, então esse não é o problema.

Informação do sistema:

davidm@illergard:~$ uname -a
Linux illergard 3.2.0-65-generic #99-Ubuntu SMP Fri Jul 4 21:03:29 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

davidm@illergard:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 12.04.4 LTS
Release:    12.04
Codename:   precise

Relacionado: link

    
por Davidmh 08.07.2014 / 12:45

1 resposta

0

Eu não sei a causa e ficarei feliz se alguém puder apontar, mas encontrei uma solução. Correndo

sudo python ez_setup.py

de ez_setup.py obtido aqui, resolveu o problema magicamente, e agora o python vê as bibliotecas atualizadas. Nenhuma reinstalação foi necessária.

    
por Davidmh 08.07.2014 / 15:58

Tags