How to install numpy and other modules?

5

I need help with how to install numpy. I tried to install pygame using pip but it did not work and I was confused on how to install modules or packages.

Using python 3.5.0 in Windows 10 pro

    
asked by anonymous 16.11.2015 / 00:09

2 answers

1
  • Install miniconda
  • At a command prompt, type: $ conda install numpy
  • With this you will probably get all the bookstores and packages. Anaconda includes 125 packages.

        
    16.11.2015 / 00:18
    1

    First of all, to install pygame you do not need to do it using the pip because it can be downloaded via the official here , download the version using option recommended by the site itself, ie for the OS you use in that case and windows, as for installing numpy, I'll give you two options.

    1st option

    Download the same in this link , extract the downloaded package , via prompt navigate to the folder where if it is the same and do the following:

    python setup.py build
    

    after

    python setup.py install
    

    installing numpy

    Once you have installed the pip, run the following command via prompt:

    pip install numpy
    

    2nd option

    another option for installing numpy and using the same executable that is well here .

    Download the most current version and install normally.

        
    14.01.2016 / 01:50