码迷,mamicode.com
首页 > 系统相关 > 详细

Linux上安装服务器监视工具,名为pyDash。

时间:2021-06-02 13:26:43      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:get   ubuntu   ref   issue   enc   tor   img   版本   follow   

pyDash – A Web Based Linux Performance Monitoring Tool

你可以通过以下命令来判断是否已安装:

pip --version     # Python2.x 版本命令
pip3 --version    # Python3.x 版本命令

 技术图片

 

 // 查看启用的源列表

yum repolist

// 查看禁用的源列表

yum repolist disabled

技术图片

 

 我查看了一下果然epel在禁用列表里,那怎么启用呢?其实只要修改一个文件就可以了,用vim打开下面的文件

vim /etc/yum.repos.d/epel.repo

 将下面第一个和第三个的enabled=0改成enabled=1,第二个是测试版的可能不稳定所有别修改。

技术图片

 

 现在可以用了,如果不修改上面的文件也可以用就中在安装的命令里加以下参数也可以。

--enablerepo=epel  --参数
yum --enablerepo=epel install python-pip  --例如

 

How to Install pyDash in Linux System

1. First install required packages: git and Python pip as follows:

-------------- On Debian/Ubuntu -------------- 
$ sudo apt-get install git python-pip

-------------- On CentOS/RHEL -------------- 
# yum install epel-release
# yum install git python-pip

-------------- On Fedora 22+ --------------
# dnf install git python-pip

2. If you have git and Python pip installed, next, install virtualenv which helps to deal with dependency issues for Python projects, as below:

# pip install virtualenv
OR
$ sudo pip install virtualenv

 

未完

 

Linux上安装服务器监视工具,名为pyDash。

标签:get   ubuntu   ref   issue   enc   tor   img   版本   follow   

原文地址:https://www.cnblogs.com/qiyebao/p/14819458.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!