How to add Python to Windows registry

前端 未结 6 977
一个人的身影
一个人的身影 2020-12-01 09:21

I\'ve downloaded Enthought Canopy EPD Free (now Canopy Express) from https://www.enthought.com/products/epd/free/ and want to install SciKit Learn (http://sourceforge.net/pr

6条回答
  •  无人及你
    2020-12-01 10:03

    English

    In case that it serves to someone, I leave here the Windows 10 base register for Python 3.4.4 - 64 bit:

    Español

    Por si alguien lo necesita todavía, este es el registro base de Windows 10 para Python 3.4.4:

    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Software\Python\PythonCore\3.4]
    "DisplayName"="Python 3.4 (64-bit)"
    "SupportUrl"="http://www.python.org/"
    "Version"="3.4.4"
    "SysVersion"="3.4"
    "SysArchitecture"="64bit"
    
    [HKEY_CURRENT_USER\Software\Python\PythonCore\3.4\Help]
    
    [HKEY_CURRENT_USER\Software\Python\PythonCore\3.4\Help\Main Python Documentation]
    @="C:\\Python34\\Doc\\python364.chm"
    
    [HKEY_CURRENT_USER\Software\Python\PythonCore\3.4\Idle]
    @="C:\\Python34\\Lib\\idlelib\\idle.pyw"
    
    [HKEY_CURRENT_USER\Software\Python\PythonCore\3.4\IdleShortcuts]
    @=dword:00000001
    
    [HKEY_CURRENT_USER\Software\Python\PythonCore\3.4\InstalledFeatures]
    
    [HKEY_CURRENT_USER\Software\Python\PythonCore\3.4\InstallPath]
    @="C:\\Python34\\"
    "ExecutablePath"="C:\\Python34\\python.exe"
    "WindowedExecutablePath"="C:\\Python34\\pythonw.exe"
    
    [HKEY_CURRENT_USER\Software\Python\PythonCore\3.4\PythonPath]
    @="C:\\Python34\\Lib\\;C:\\Python34\\DLLs\\"
    

提交回复
热议问题