ModuleNotFoundError: 找不到模块名为 ‘_psutil_osx’

huangapple go评论58阅读模式
英文:

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 &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt;
ModuleNotFoundError: No module named &#39;_psutil_osx&#39;

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_osxpsutil的一个子模块,所以尝试:

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

huangapple
  • 本文由 发表于 2023年6月29日 13:22:51
  • 转载请务必保留本文链接:https://go.coder-hub.com/76578255.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定