(PointRCNN) root@autodl-container-36da11a152-3fc134ce:~# sudo systemctl stop nvidia-persistenced.service Failed to connect to bus: No such file or directory
时间: 2023-06-25 08:06:30 浏览: 199
这个错误提示意味着 Systemd 没有找到 D-Bus 系统总线。请运行以下命令来启动 D-Bus:
```
sudo systemctl start dbus
```
然后再试一次停止 `nvidia-persistenced.service` 服务:
```
sudo systemctl stop nvidia-persistenced.service
```
如果仍然遇到问题,请检查系统日志以获取更多信息。
相关问题
(PointRCNN) root@autodl-container-36da11a152-3fc134ce:~# sudo systemctl start dbus Failed to connect to bus: No such file or directory
这个错误提示通常是因为 D-Bus 服务没有启动,你可以尝试手动启动 D-Bus 服务,命令如下:
```
sudo service dbus start
```
如果还是不能启动,可以尝试重新安装 dbus 包,命令如下:
```
sudo apt-get remove dbus
sudo apt-get install dbus
```
如果还是无法解决问题,可能是系统出现了其他问题,建议检查系统日志以获取更多信息。
root@autodl-container-d823118352-afc9a3b3:~# import torch bash: import: command not found
这个命令提示表明你正在一个非Python环境(如Linux shell)中尝试导入`torch`模块,但`import`是一个shell命令,而非Python关键字。在你的例子中,`root@autodl-container-d823118352-afc9a3b3:~#`看起来像是在Docker容器中。
如果你需要使用PyTorch,首先确认你已经激活了一个Python环境,比如Conda或Virtualenv,并且在这个环境中安装了PyTorch。如果是容器环境,可能还需要检查当前激活的Python解释器和相关包。
正确的做法是在Python交互模式下(例如通过输入`python`或者`python3`),然后导入`torch`:
```sh
$ python
>>> import torch
```
或者在脚本中添加`#!/usr/bin/env python3`作为第一行来确保使用特定版本的Python,并执行该脚本:
```sh
$ ./your_script.py
```
如果还是遇到问题,可能是路径设置不正确,需要确保`torch`在系统路径中。如果没有安装,可以使用pip进行安装:
```sh
$ pip install torch torchvision
```
阅读全文