Re: python and numpy

2020-04-22 Thread edmondo . giovannozzi
Il giorno martedì 21 aprile 2020 21:04:17 UTC+2, Derek Vladescu ha scritto: > I’ve just begun a serious study of using Python as an aspiring > programmer/data scientist. > Can someone please walk me through how to download Python, SO THAT I will be > able to import numpy? > > Thanks, > Derek >

Re: python and numpy

2020-04-21 Thread joseph pareti
FWIW, I installed Anaconda on Windows 10. Then besides Python you also get SPIDER, Jupyter and more, all out of the box. Am Mittwoch, 22. April 2020 schrieb Souvik Dutta : > First head over to the official python download page. Then choose the > version and type of installer you want. After you d

Re: python and numpy

2020-04-21 Thread Souvik Dutta
First head over to the official python download page. Then choose the version and type of installer you want. After you download it click on the installer to install it. Don't forget to click on the check boxes that says add python to path and download pip. Then search for idle in the search menu.

python and numpy

2020-04-21 Thread Derek Vladescu via Python-list
I’ve just begun a serious study of using Python as an aspiring programmer/data scientist. Can someone please walk me through how to download Python, SO THAT I will be able to import numpy? Thanks, Derek Sent from Mail for Windows 10 -- https://mail.python.org/mailman/listinfo/python-list

Re: Trouble Downloading Python and Numpy

2019-05-29 Thread Shakti Kumar
On Wed, 29 May 2019 at 9:38 PM Shakti Kumar wrote: > > > On Wed, 29 May 2019 at 9:29 PM Contreras, Brian J > wrote: > >> Good Morning, >> >> I am a research student at the Georgia Institute of Technology. I have >> made multiple attempts to download different versions of Python with Numpy >> on

Re: Trouble Downloading Python and Numpy

2019-05-29 Thread Shakti Kumar
On Wed, 29 May 2019 at 9:29 PM Contreras, Brian J wrote: > Good Morning, > > I am a research student at the Georgia Institute of Technology. I have > made multiple attempts to download different versions of Python with Numpy > on my Microsoft Surface Book with no success. > Since you need numpy

Trouble Downloading Python and Numpy

2019-05-29 Thread Contreras, Brian J
Good Morning, I am a research student at the Georgia Institute of Technology. I have made multiple attempts to download different versions of Python with Numpy on my Microsoft Surface Book with no success. I ensured that I have space for the program and the latest windows 10 update, I still am

Re: Determining 32 bit vs 64 bit Python and numpy

2009-05-25 Thread mmanns
On Mon, 25 May 2009 23:54:45 +0200 "Martin v. Löwis" wrote: > > I am looking for a robust, cross-platform way to determine if I am > > on a 32 bit or a 64 bit Python and if the numpy installation is > > also 32 bit or 64 bit. > > You can find out the size of a pointer with struct.calcsize("P") *

Re: Determining 32 bit vs 64 bit Python and numpy

2009-05-25 Thread Martin v. Löwis
> I am looking for a robust, cross-platform way to determine if I am on a > 32 bit or a 64 bit Python and if the numpy installation is also 32 bit > or 64 bit. You can find out the size of a pointer with struct.calcsize("P") * 8. Numpy will have the same configuration if you can import it. Regard

Determining 32 bit vs 64 bit Python and numpy

2009-05-25 Thread mmanns
Hi I am looking for a robust, cross-platform way to determine if I am on a 32 bit or a 64 bit Python and if the numpy installation is also 32 bit or 64 bit. I have googled a bit and found some platform specific solutions but nothing general. The solution should work with different versions of Py