Re: [Tutor] Idle - ImportError: No module named numpy

2015-03-14 Thread Markos
On 13-03-2015 12:34, Oscar Benjamin wrote: On 11 March 2015 at 19:43, Markos wrote: On 10-03-2015 16:48, Oscar Benjamin wrote: Looks like a bug in pip or in the get-pip script. What version of python3 are you using? But the command to install numpy gave an error message: #

Re: [Tutor] Idle - ImportError: No module named numpy

2015-03-13 Thread Oscar Benjamin
On 11 March 2015 at 19:43, Markos wrote: > > On 10-03-2015 16:48, Oscar Benjamin wrote: >> >> Looks like a bug in pip or in the get-pip script. What version of >> python3 are you using? > > But the command to install numpy gave an error message: > > # python3 -m pip install numpy > > Collecting nu

Re: [Tutor] Idle - ImportError: No module named numpy

2015-03-12 Thread Markos
On 09-03-2015 21:25, Oscar Benjamin wrote: On 9 March 2015 at 18:09, Markos wrote: I installed numpy in Debian (6.0) with the command: apt-get install python-numpy I just find that this package is exclusively for python 2.5 and 2.6 The idle3 use Python 3.1.3. How to install numpy for Pyt

Re: [Tutor] Idle - ImportError: No module named numpy

2015-03-11 Thread Markos
On 10-03-2015 16:48, Oscar Benjamin wrote: On 10 March 2015 at 13:59, Markos wrote: I don't have the python3-pip in the repository, then I downloaded the get-pip.py from: https://bootstrap.pypa.io/get-pip.py But when running the command "python3 get-pip.py" appears the error message (end

Re: [Tutor] Idle - ImportError: No module named numpy

2015-03-11 Thread Alan Gauld
Please use ReplyAll to include the tutor list On 11/03/15 02:00, Jack Potrashitel wrote: Ok , thanks a lot. But I still in doubts :(. if self.root is None: self.root = BinaryNode( value ) else: self.root.add( value ) the object is created as BinaryNode(value ) only

Re: [Tutor] Idle - ImportError: No module named numpy

2015-03-10 Thread Alan Gauld
On 10/03/15 13:59, Markos wrote: I'm not sure about Squeeze but on this Ubuntu 14.04 system you can install numpy for Python 3 by typing: $ sudo apt-get install python3-numpy The Python 3 version of the package is a relatively new addition to the repositories though so it may not be avail

Re: [Tutor] Idle - ImportError: No module named numpy

2015-03-10 Thread Oscar Benjamin
On 10 March 2015 at 13:59, Markos wrote: > I don't have the python3-pip in the repository, then I downloaded the > get-pip.py from: > > https://bootstrap.pypa.io/get-pip.py > > But when running the command "python3 get-pip.py" appears the error message > (end of message). Looks like a bug in pip

Re: [Tutor] Idle - ImportError: No module named numpy

2015-03-09 Thread Oscar Benjamin
On 9 March 2015 at 18:09, Markos wrote: > I installed numpy in Debian (6.0) with the command: > apt-get install python-numpy > > I just find that this package is exclusively for python 2.5 and 2.6 > > The idle3 use Python 3.1.3. > > How to install numpy for Python 3 in order to use it with the idl

Re: [Tutor] Idle - ImportError: No module named numpy

2015-03-09 Thread Alan Gauld
On 09/03/15 18:09, Markos wrote: How to install numpy for Python 3 in order to use it with the idle? Is there any simple way? Searching for numpy in Synaptic shows a python3-numpy package I'm using Mint 17 which is based on Debian/Ubuntu so there should be something in the debian repositorie

Re: [Tutor] Idle - ImportError: No module named numpy

2015-03-09 Thread Markos
On 06-03-2015 21:43, boB Stepp wrote: On Fri, Mar 6, 2015 at 12:27 PM, Markos wrote: Hi, I'm beginning to study the numpy. When I open a terminal (Debian Squeeze) and run the python interpreter the command "import numpy as np" run without errors. But when I run the same command on idle3

Re: [Tutor] Idle - ImportError: No module named numpy

2015-03-06 Thread Dave Angel
On 03/06/2015 01:27 PM, Markos wrote: Hi, I'm beginning to study the numpy. And what does this have to do with the """Strengths & weaknesses of Python lists compared to "old school" arrays [Was "Fixed Vector Array"]""" thread? Please don't hijack a thread by replying with an unrelated

Re: [Tutor] Idle - ImportError: No module named numpy

2015-03-06 Thread Mark Lawrence
On 07/03/2015 00:42, WolfRage wrote: Well on the python interpretor did you use python3 or just python? Please don't top post on this list. It makes following long threads difficult if not impossible, and is basically downright irritating. Thanks for listening. -- My fellow Pythonistas, a

Re: [Tutor] Idle - ImportError: No module named numpy

2015-03-06 Thread boB Stepp
On Fri, Mar 6, 2015 at 12:27 PM, Markos wrote: > Hi, > > I'm beginning to study the numpy. > > When I open a terminal (Debian Squeeze) and run the python interpreter the > command "import numpy as np" run without errors. > > But when I run the same command on idle3 the following error appears. > >

Re: [Tutor] Idle - ImportError: No module named numpy

2015-03-06 Thread WolfRage
Well on the python interpretor did you use python3 or just python? On 03/06/2015 01:27 PM, Markos wrote: Hi, I'm beginning to study the numpy. When I open a terminal (Debian Squeeze) and run the python interpreter the command "import numpy as np" run without errors. But when I run the same co

[Tutor] Idle - ImportError: No module named numpy

2015-03-06 Thread Markos
Hi, I'm beginning to study the numpy. When I open a terminal (Debian Squeeze) and run the python interpreter the command "import numpy as np" run without errors. But when I run the same command on idle3 the following error appears. >>> import numpy as np Traceback (most recent call last):