为什么我在 Linux 系统上得到 winreg 的 ModuleNotFoundError?
Why do I get a ModuleNotFoundError for winreg on a Linux system?
'winreg' 模块未找到 python 3.6.7。我在 Python 3.4.
中没有遇到这个问题
'winreg' 中是否有任何第三方应用程序可以使用相同的代码,或者我该如何解决这个问题。
jaki@jaki-notebook:~$ python3 -V
Python 3.6.7
jaki@jaki-notebook:~$ python3
Python 3.6.7 (default, Oct 22 2018, 11:32:17)
[GCC 8.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from winreg import *
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'winreg'
>>>
ModuleNotFoundError: No module named 'winreg'
它不适用于 linux 因为这个包 expose functions of the Windows registry API to Python
在 python 官方网站上阅读 this 文档
'winreg' 模块未找到 python 3.6.7。我在 Python 3.4.
中没有遇到这个问题'winreg' 中是否有任何第三方应用程序可以使用相同的代码,或者我该如何解决这个问题。
jaki@jaki-notebook:~$ python3 -V
Python 3.6.7
jaki@jaki-notebook:~$ python3
Python 3.6.7 (default, Oct 22 2018, 11:32:17)
[GCC 8.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from winreg import *
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'winreg'
>>>
ModuleNotFoundError: No module named 'winreg'
它不适用于 linux 因为这个包 expose functions of the Windows registry API to Python
在 python 官方网站上阅读 this 文档