Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

numpy python 3.4.1 installation: Python 3.4 not found in registry

I have two python versions on my computer 2.7 and 3.4.1 . I have tried to install numpy by pip3.4 which resulted with vcvarsall.bat not found which i am pretty sure it is included in system path. Then i gave up downloaded numpy binary numpy-1.8.1-win32-superpack-python3.4.exe. And during the installation it tells me that numpy cannot find python 3.4 in the registry which i see that it is there also.

HKEY_LOCAL_MACHINE
-SOFTWARE
--Python
---PythonCore
----2.7
-----Help
-----InstallPath
-----Modules
-----PythonPath
----3.4
-----Help
-----InstallPath
-----Modules
-----PythonPath

so what has left me to do from here? My system is windows 7 64 bit.

like image 529
ifyalciner Avatar asked Jul 10 '14 12:07

ifyalciner


5 Answers

There is an easier fix, remove and re-install python, in the beginning of python setup when you are asked if you want to install python for all users or just this user, select this user only. That way the registry goes into current user by default and can be found easily by successive software packages. Tried it myself, worked like a charm. Just a simpler option for technologically less literate people like myself. But if you need it for multiple users on a PC then you have got to edit the registry and put it in manually, from local machine to current user. Copy it like explained in previous comments.

like image 71
user4493094 Avatar answered Nov 19 '22 02:11

user4493094


When installing numpy on Windows you have to ensure that you are using a .exe for the corresponding Python installation.

As you're using Python 3.4.1 you have to use an installer for Python 3.4.1. The installer that you were using was last modified on 25th March which is before 3.4.1 was released. This suggests it was for 3.4.0 and so will not work.

If you need up-to-date Windows installers for numpy (as well as a large host of other packages) they can be found here.

like image 21
Ffisegydd Avatar answered Nov 19 '22 04:11

Ffisegydd


This steps work for me with windows 8.1 64bits

The problem is that some module installers look in the wrong place for Python version information.

For example, in the case of this one module, the installer was looking for HKEY_CURRENT_USER\SOFTWARE\Python\PythonCore\3.4 in the registry.

I found that my Python 3.4 installer had placed this information in HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\3.2 instead.

Once you know the reason, solving it is easy.

Open Registry Editor (may need administrator privilege) and export HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\3.4 into a text file. Open the exported .reg file in a text editor and replace the HKEY_LOCAL_MACHINE entries to HKEY_CURRENT_USER.

Add these new entries back to the registry (here is how). The module installer should now be able to proceed without throwing the error.

ref: http://codeyarns.com/2012/04/28/python-version-not-found-in-registry-error/

like image 37
Samuel Pinto Avatar answered Nov 19 '22 02:11

Samuel Pinto


I have just faced a similar issue ("numpy cannot find python 3.4 in the registry") when installing numpy-1.9.1-win32-superpack-python3.4.exe. The solution was to install the python-3.4.2.msi instead of python-3.4.2.amd64.msi.

like image 26
Abilio Faria Avatar answered Nov 19 '22 03:11

Abilio Faria


You are trying to install the 32 bit version of numpy on a 64 bit installation of python. It doesn't look to me like you can download 64bit scipy from sourceforge so a solution is to install a 32bit version of python.

Abilio Faria gave the answer. Another answer in another thread over here

like image 1
Francois Avatar answered Nov 19 '22 02:11

Francois