Re: [Numpy-discussion] Installing numpy

2020-12-14 Thread Ralf Gommers
On Mon, Dec 14, 2020 at 3:26 PM Matti Picus wrote: > NumPy HEAD does not support python2. You should use v1.16.6 which was the > last release to support python2. > That said, we should raise a comprehensible error. As well as write a test that checks we avoid py27 syntax errors like f-strings in

Re: [Numpy-discussion] Installing numpy

2020-12-14 Thread Matti Picus
NumPy HEAD does not support python2. You should use v1.16.6 which was the last release to support python2. Matti On 12/14/20 4:14 PM, Lianyuan Zheng wrote: Is this caused by the python version installed too old (v2.7.17) or other

Re: [Numpy-discussion] Installing numpy

2020-12-14 Thread Kevin Sheppard
NumPy does not support Python 2.7. If you must use 2.7 you need to use NumPy 1.16.6.  Otherwise, you should probably be using Python 3.8 for new work. Kevin  From: Lianyuan ZhengSent: Monday, December 14, 2020 2:15 PMTo: Discussion of Numerical PythonSubject: Re: [Numpy-discussion] Installing

Re: [Numpy-discussion] Installing numpy

2020-12-14 Thread Lianyuan Zheng
Hello, When I run the command "python numpy install", it shows the following error: Traceback (most recent call last): File "setup.py", line 27, in import versioneer File "./numpy/versioneer.py", line 1739 file=sys.stderr) ^ SyntaxError: invalid syntax Is this caused by the

Re: [Numpy-discussion] Installing numpy

2020-12-11 Thread Lianyuan Zheng
Hi Stanley, Thank you! Lianyuan On Fri, Dec 11, 2020 at 2:49 PM Stanley Seibert wrote: > The development version of NumPy from Github requires Python 3.7 or later. > > On Fri, Dec 11, 2020 at 1:35 PM Lianyuan Zheng > wrote: > >> Hello, >> >> On my linux server, I downloaded the NUMPY package

Re: [Numpy-discussion] Installing numpy

2020-12-11 Thread Stanley Seibert
The development version of NumPy from Github requires Python 3.7 or later. On Fri, Dec 11, 2020 at 1:35 PM Lianyuan Zheng wrote: > Hello, > > On my linux server, I downloaded the NUMPY package from GitHub (git clone > https://github.com/numpy/numpy.git) and then accessed the directory > "numpy".