Ci sono solitamente tre modi per installare NumPy in Python 3.4.3.
- usando pip: "pip install numpy" anche se ci sono possibilità che fallisca con l'errore
- Incapace di trovare vcvarsall.bat
because you don't have installed and/or configured the right version on C++ compiler on your machine
- easy_install numpy - usually works, regardless if you have the right C++ compiler installer or configured but in some cases it will fail with the same error as pip
- the last option is to download the right wheel archive from http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy , salvarlo in una certa posizione (diciamo che sarà X) e poi usare "pip install X" dove X è la posizione esatta dell'archivio della ruota di numpy scaricato. Assicuratevi che l'archivio scaricato di wheel corrisponda al vostro interprete Python. Per esempio, se avete Python a 32 bit, dovete scaricare l'archivio wheel che ha "win32" nel suo nome, altrimenti dovete scaricare quello che ha "win_amd64" nel suo nome.