gpt4 book ai didi

python - 属性错误 : module 'os' has no attribute 'uname

转载 作者:行者123 更新时间:2023-12-04 01:29:55 30 4
gpt4 key购买 nike

当我做:

>>> import os
>>> os.uname()

我收到如下所示的属性错误:
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
os.uname()
AttributeError: module 'os' has no attribute 'uname'

我该如何解决这是我的 python 坏了或其他原因,因为在 docs .提前谢谢你。

最佳答案

我在 Windows 10 上的 IDLE 中以完全相同的方式运行您的代码并得到了相同的结果。

>>> print(os.uname())
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
print(os.uname())
AttributeError: module 'os' has no attribute 'uname'
正如@Joran Beasley 指出的那样,这个函数只是 available in certain operating systems .
来自在线编译器:
posix.uname_result(sysname='Linux', nodename='Check', release='5.4.10-x86_64-linode132', version='#1 SMP PREEMPT Thu Jan 9 21:17:12 UTC 2020', machine='x86_64')
如果你想获得当前的操作系统,我推荐 platform模块。
>>> import platform
>>> platform.platform()
'Windows-10-10.0.18362-SP0'
有些人更喜欢使用 os模块,但 platform更具可读性。

关于python - 属性错误 : module 'os' has no attribute 'uname,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61241374/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com