ModuleNotFoundError: No module named 'apt_pkg'
时间: 2023-06-11 19:10:00 浏览: 1961
Ubuntu18.04下PyCharm导入ROS库(roslib):”ImportError: No module named rospy ” “[http://localhost:11311]”
这个错误通常出现在 Ubuntu 或者 Debian 等基于 Debian 的 Linux 发行版上,这是因为缺少 `python3-apt` 包。你可以通过以下命令安装:
```
sudo apt-get install python3-apt
```
如果你使用的是 Python2,请使用以下命令安装:
```
sudo apt-get install python-apt
```
安装完成后,应该就可以正常运行你的程序了。
阅读全文