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 to install will not need to do pygame using the pip because it can be downloaded via the official website here , download the version using option recommended by the site itself, ie, to the OS you use it in the case and windows, how to install numpy, I will give you two options.

    1st option

    , extract the downloaded package , via prompt navigate up 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 using the same executable that is right here.

    Download the most current version and install normally.

        
    14.01.2016 / 01:50