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