Install terminator in CentOS 7
Terminator
- 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
- build and install
./setup.py build
./setup.py install
which terminator
/usr/bin/terminator
fix run error
terminator Traceback (most recent call last): File "/usr/bin/terminator", line 23, in <module> import psutil ImportError: No module named psutilFor 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-pipsudo yum install epel-release sudo yum install python-devel sudo yum install python-pip sudo pip install --upgrade pip sudo pip install psutilFinish all module install, terminator could be run successfully
CentOS7安装Terminator
本文介绍如何在CentOS 7中安装Terminator多标签终端模拟器,并解决安装过程中遇到的错误。通过下载源文件并使用python-pip安装依赖模块psutil,最终成功运行Terminator。
6122

被折叠的 条评论
为什么被折叠?



