Anteriormente Eu instalei o Numpy for Python-3.4.0. Agora que eu instalei o conda, o Python-3.4.2 vem com ele. Então, quando eu executo o python3
eu uso o Python-3.4.2. E quando eu chamo import numpy
eu recebo um ImportError
. Quando eu tento executar o sudo apt-get install python3-numpy eu recebo este erro dizendo que já está instalado.
Resumo:
begueradj@begueradj-HP-Compaq-6510b-KE130ET-ABF:/home$ sudo apt-get install python3-numpy
[sudo] password for begueradj:
Reading package lists... Done
Building dependency tree
Reading state information... Done
python3-numpy is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 323 not upgraded.
begueradj@begueradj-HP-Compaq-6510b-KE130ET-ABF:/home$ python3
Python 3.4.2 |Continuum Analytics, Inc.| (default, Oct 21 2014, 17:40:08)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux
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'
>>>
Como posso resolver isso?