在 RasPi 上使用 psutil(Python 模块)时出现问题
Issue using psutil (Python Module) on RasPi
我想安装 psutil 模块来读取 CPU 数据。不幸的是,安装后执行代码时仍然显示以下内容。
import psutil
ImportError: No module named 'psutil'
如我所见,安装是在 Python 2.7 文件夹中完成的。但是,我在 shell 和 Thonny 中使用 python 3.5。
这个问题已经在 Whosebug 上得到了回答,但我无法用给定的信息解决它。
如何为 Python 3.5 安装 psutil?
我已经安装了...
sudo apt-get install python3-psutil
也...
apt-get install python3-psutil
试过了。第二个选项表示无法锁定根目录。
Psutil模块的正确使用方法是什么?
BG,谢谢!
我已经解决了
输入的命令是:
sudo pip3 install psutil
现在模块运行 Python 3
我想安装 psutil 模块来读取 CPU 数据。不幸的是,安装后执行代码时仍然显示以下内容。
import psutil
ImportError: No module named 'psutil'
如我所见,安装是在 Python 2.7 文件夹中完成的。但是,我在 shell 和 Thonny 中使用 python 3.5。 这个问题已经在 Whosebug 上得到了回答,但我无法用给定的信息解决它。
如何为 Python 3.5 安装 psutil?
我已经安装了...
sudo apt-get install python3-psutil
也...
apt-get install python3-psutil
试过了。第二个选项表示无法锁定根目录。
Psutil模块的正确使用方法是什么?
BG,谢谢!
我已经解决了
输入的命令是:
sudo pip3 install psutil
现在模块运行 Python 3