Version of NymPy

2024-05-15 Thread Popov, Dmitry Yu via Python-list
What would be the easiest way to learn which version of NumPy I have with my 
Anaconda distribution?
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Version of NymPy

2024-05-15 Thread Larry Martell via Python-list
On Wed, May 15, 2024 at 2:43 PM Popov, Dmitry Yu via Python-list
 wrote:
>
> What would be the easiest way to learn which version of NumPy I have with my 
> Anaconda distribution?

>>> import numpy
>>> numpy.__version__
'1.24.4'
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Version of NymPy

2024-05-15 Thread Popov, Dmitry Yu via Python-list
Thank you.

From: Larry Martell 
Sent: Wednesday, May 15, 2024 1:55 PM
To: Popov, Dmitry Yu 
Cc: Popov, Dmitry Yu via Python-list 
Subject: Re: Version of NymPy

On Wed, May 15, 2024 at 2: 43 PM Popov, Dmitry Yu via Python-list  wrote: > > What would be the easiest way to learn which version of 
NumPy I have with my Anaconda distribution? >>> import numpy >>>
ZjQcmQRYFpfptBannerStart
This Message Is From an External Sender
This message came from outside your organization.

ZjQcmQRYFpfptBannerEnd

On Wed, May 15, 2024 at 2:43 PM Popov, Dmitry Yu via Python-list
 wrote:
>
> What would be the easiest way to learn which version of NumPy I have with my 
> Anaconda distribution?

>>> import numpy
>>> numpy.__version__
'1.24.4'

-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Version of NymPy

2024-05-15 Thread MRAB via Python-list

On 2024-05-15 19:42, Popov, Dmitry Yu via Python-list wrote:

What would be the easiest way to learn which version of NumPy I have with my 
Anaconda distribution?


Import numpy and print its '__version__' attribute.

--
https://mail.python.org/mailman/listinfo/python-list