首页 > 技术文章 > Centos7 安装 Emacs

bxf0011 2021-03-03 14:55 原文

 摘自:https://www.cnblogs.com/zhangzhangtabszj/p/13802330.html

1、进入root

su root

2、安装包

wget wget http://ftp.gnu.org/gnu/emacs/emacs-26.1.tar.gz

3、解压

tar -xzvf emacs* && cd emacs*

4、安装依赖

yum install gcc* glib* gtk* ncurses* libXpm* giflib* libjpeg* libtiff* libpng* -y

5、生成makefile

./configure

  若报错试试这个

./configure --with-gnutls=no

6、make

make && make install

推荐阅读