ubuntu22 安装 install python-selinux python-semanage python-sepolgen
时间: 2023-07-25 22:39:07 浏览: 201
python + Selenium 安装包
很抱歉,Ubuntu 22.04 目前还没有正式发布,所以我无法提供针对该版本的安装指导。不过,如果你是在 Ubuntu 20.04 或者其他版本上安装的话,可以使用以下命令来安装这些模块:
```
sudo apt-get update
sudo apt-get install python3-selinux policycoreutils-python-utils
```
这将安装 Python 3 版本的 SELinux 模块以及一些 SELinux 相关的工具。如果你使用的是 Python 2.x 版本,可以将上面的命令中的“python3-selinux”替换为“python-selinux”即可。
阅读全文