AttributeError: module #39;os#39; has no attribute #39;uname(AttributeError:模块“os没有属性“uname)
问题描述
当我这样做时:
>>> import os
>>> os.uname()
我收到如下所示的属性错误:
I get an attribute error which looks like this:
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
os.uname()
AttributeError: module 'os' has no attribute 'uname'
我该如何解决这是我的 python 损坏或其他问题,因为在 文档.提前谢谢你.
How can I fix this is my python broken or something else because in the docs. Thank you in advanced.
推荐答案
我在 Windows 10 上的 IDLE 中以完全相同的方式运行您的代码,并得到了相同的结果.
I've run your code the exact same way in IDLE on Windows 10 and got the same result.
>>> 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 指出的那样,此功能仅在 中可用某些操作系统.
And as @Joran Beasley pointed out, this function is only 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
模块.
If you want to get current os, I recommend the platform
module.
>>> import platform
>>> platform.platform()
'Windows-10-10.0.18362-SP0'
有些人更喜欢使用 os
模块,但 platform
更易读.
Some people prefer using os
module, but platform
is much more readable.
这篇关于AttributeError:模块“os"没有属性“uname"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:AttributeError:模块“os"没有属性“uname"


基础教程推荐
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01