1 Star 0 Fork 0

ricky.z/pkg_analyse

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
utils.py 542 Bytes
一键复制 编辑 原始数据 按行查看 历史
ricky.z 提交于 2020-11-30 18:56 . modify
import os
import sys
import subprocess
def rpm_detect(rpm_name, bin_name):
stdout = subprocess.run(bin_name, shell=True, stderr=subprocess.PIPE).stderr.decode()
if stdout.find('command not found') >= 0:
print('Can\'t find %s, begin to install it from repo...'%rpm_name)
yum_results = subprocess.run('yum install %s -y'%rpm_name, shell=True, stderr=subprocess.PIPE).stderr.decode()
if yum_results.find('Error') >= 0 or yum_results.find('error') >= 0:
print('Failed to install %s from repo.'%rpm_name)
exit(1)
return
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/RickyZ5351/pkg_analyse.git
[email protected]:RickyZ5351/pkg_analyse.git
RickyZ5351
pkg_analyse
pkg_analyse
master

搜索帮助