英文:
ModuleNotFoundError: No module named '_psutil_osx'
问题
当我想要导入_psutil_osx
时,发生了错误。
这是代码部分:
import _psutil_osx
以及错误信息:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named '_psutil_osx'
我确认我已经安装了psutil,这是pip list
的结果:
Package Version
---------- -------
pip 23.1.2
psutil 5.9.5
PyGreSQL 5.2.4
PyYAML 6.0
setuptools 67.6.1
six 1.16.0
wheel 0.40.0
附注:我在使用 Apple Silicon(M1) 运行这段代码。
我希望成功导入_psutil_osx
。
英文:
When I wanted to import '_psutil_osx' ,Error happend.
This is the clause
import _psutil_osx
and the error
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named '_psutil_osx'
And I confirmed that I have installed psutil, that's the result of pip list
Package Version
---------- -------
pip 23.1.2
psutil 5.9.5
PyGreSQL 5.2.4
PyYAML 6.0
setuptools 67.6.1
six 1.16.0
wheel 0.40.0`
ps: I runned this on Apple Silicon (M1)
I want to import _psutil_osx
success
答案1
得分: 0
_psutil_osx
是psutil
的一个子模块,所以尝试:
import psutil._psutil_osx
或者
from psutil import _psutil_osx
英文:
_psutil_osx
is a submodule of psutil
so try
import psutil._psutil_osx
or
from psutil import _psutil_osx
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论