This error message can also be related to the following error message:
这条错误信息等同于以下问题:
"Python has encountered a serious application error and is unable to continue",
Python由于一系列应用问题中止安装
or it can be an error similar to:
或者类如如下错误:
"hresult 0x800736fd",
after the install of Microsoft SQL Server 2008 Native Client.
导致以上错误的信息应与安装SQL Server 2008 Native Client有关
你可以通过以下测试确认属于此类错误:
Test 1. Run the .NET Framework Setup Verification Tool.
测试方案1:运行.net安装检查工具。
After running the .NET Framework Setup Verification Tool, there should be three Frameworks listed: 2.0 SP2, 3.0 SP2, and 3.5 SP1.
运行后应会看到以下版本:2.0SP2,3.0SP2和3.5SP1
Validate each Framework starting with 2.0 SP2, then 3.0 SP2, and lastly 3.5 SP1. The only one that should fail is 3.5 SP1.
按顺序从2.0SP2开始检测有效性信息,应该只有3.5SP1返回有效性检查失败。
Test 2. As an Administrator, open a Command Prompt and run *SFC /SCANNOW*. A failure regarding the Windows Resource Monitor should be returned.
测试方案2:以管理员身份运行命令行,执行SFC /SCANNOW指令,应该会有关于“windows资源监视器”(?)失败的信息返回
解决方案:
In Windows, click Start > Run.
开始菜单→运行
In the Run window, type *regedit*.
输入regedit
In the Registry Editor window, navigate to the following location:
在注册表编辑器找到以下位置
HKEY_LOCAL_MACHINE > SYSTEM > CurrentControlSet > Control
In the Registry Editor dialog box, double-click RegistrySizeLimit. This opens the Edit DWORD Value dialog box.
双击编辑里面名为“RegistrySizeLimit”的DWORD值
If unable to find the RegistrySizeLimit key in the above path, click Edit > Find and search for RegistrySizeLimit.
如果没有这个值,就用F3搜一下
If still unable to find the RegistrySizeLimit key, then create the key using the following steps:
a. Create the key by Right-Click > New > DWORD (32 or 64 –bit) Value.
如果实在实在是没有这个值(这什么破标准啊?!!)就自己创建一个
b. Enter ffffffff as the *Hexadecimal* value. Click the Decimal radio button
c. Enter 4294967295 as the Decimal value.
d. Select OK and proceed to Step 6, below.
In the Edit DWORD Value dialog box, enter ffffffff as the Hexadecimal value. Click on the Decimal radio button, and enter 4294967295 as the Decimal value. Click OK.
总之,就是找到这个god dam值,然后设置为十进制的4294967295(也就是十六进制的0xffffffff)
Reboot the machine.
然后重启电脑
Log in as an Administrator and open a Command Prompt and run *SFC /SCANNOW*.
以管理员身份登陆并打开命令行输入SFC /SCANNOW的命令,没问题就可以继续了……