Install terminator in CentOS 7

前端之家收集整理的这篇文章主要介绍了Install terminator in CentOS 7前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Install terminator in CentOS 7

Terminator

  1. download

    wget https://launchpad.net/terminator/gtk3/1.91/+download/terminator-1.91.tar.gz
    tar zxvf terminator-1.91.tar.gz
    cd terminator-1.91
  2. build and install

    ./setup.py build
    ./setup.py install
    which terminator
    /usr/bin/terminator
  3. fix run error

    terminator
        Traceback (most recent call last): File "/usr/bin/terminator",line 23,in <module> import psutil ImportError: No module named psutil

    For fixing this error we need install psutil module,for this,first need python-pip to install python module
    and then epel-release,python-devel for python-pip

    sudo yum install epel-release
    sudo yum install python-devel   
    sudo yum install python-pip
    sudo pip install --upgrade pip
    sudo pip install psutil

    Finish all module install,terminator could be run successfully

原文链接:https://www.f2er.com/centos/375403.html

猜你在找的CentOS相关文章