我想使用python的winreg模块来处理windows注册表.
但是当我尝试导入winreg模块时,它会给出ImportError.
Python 2.4.3 (#1, Dec 11 2006, 11:39:03)
[GCC 4.1.1 20061130 (Red Hat 4.1.1-43)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import __winreg
Traceback (most recent call last):
File "<stdin>", line 1, in ?
ImportError: No module named __winreg
>>> import _winreg
Traceback (most recent call last):
File "<stdin>", line 1, in ?
ImportError: No module named _winreg
我是否需要单独安装此模块?
任何建议都会有用.
解决方法:
它无法在Linux上运行.
_winreg – Windows registry access
Availability: Windows.
New in version 2.0. These functions expose the Windows registry API to
Python. Instead of using an integer as the registry handle, a handle
object is used to ensure that the handles are closed correctly, even
if the programmer neglects to explicitly close them.This module exposes a very low-level interface to the Windows
registry; it is expected that in the future a new winreg module will
be created offering a higher-level interface to the registry API.
来源:http://docs.python.org/release/2.1.2/lib/module–winreg.html