C/C++教程

Centos7安装galances

本文主要是介绍Centos7安装galances,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Centos7安装galances

    • 安装epel源(国内)
    • 安装python3-pip
    • 配置pip国内加速源
    • 更新pip3
    • 安装galnces
    • 使用glances

安装epel源(国内)

wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
# 刷新缓存
yum makecache fast
yum repolist

安装python3-pip

yum install python3-pip -y

配置pip国内加速源

# 创建~/.pip/pip.conf
mkdir -p ~/.pip && cd ~/.pip && touch pip.conf

# 将下列内容添加到~/.pip/pip.conf文件中
[global]
timeout = 6000
index-url =  https://mirrors.aliyun.com/pypi/simple/
trusted-host =  mirrors.aliyun.com

更新pip3

pip3 install -U pip

安装galnces

pip3 install galnces

使用glances

glances

在这里插入图片描述

这篇关于Centos7安装galances的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!