如何使用 python 检查 Ubuntu 上是否安装了软件包
How to check whether a package installed or not on Ubuntu using python
假设,我正在构建一个将要执行 shell 命令的应用程序。如何检查我正在使用的命令是否可用?
您可以使用 subprocess 模块来执行 shell 命令
import subprocess
output = subprocess.check_output(command, shell=True).decode("ascii")
假设,我正在构建一个将要执行 shell 命令的应用程序。如何检查我正在使用的命令是否可用?
您可以使用 subprocess 模块来执行 shell 命令
import subprocess
output = subprocess.check_output(command, shell=True).decode("ascii")