Answers:
好的,因此可以尝试安装的一种方法是编译它。为此,请按照终端中的步骤操作:
wget http://gnu.mirrors.linux.ro/emacs/emacs-24.4.tar.gz
tar -xzvf emacs-24.4.tar.gz
./configure
make
sudo make install
不知何故,我之前描述的是从源代码在Linux发行版上编译和安装软件的步骤。另外,请注意,您可能会缺少一些依赖关系,要安装它(emacs),还必须安装依赖关系,但这可以通过sudo apt-get install <dependency_name>
或针对每个依赖关系重复步骤来完成。
希望我能为您服务!
Emacs 24.4可以按照以下说明在新的Raspberry pi 2上编译并完美运行:
sudo apt-get install texinfo libncurses5-dev
安装X相关的依赖项:
sudo apt-get install xorg-dev libpng12-dev libjpeg8-dev libgif-dev libtiff5 libtiff5-dev
运行配置脚本:
./configure --prefix /opt/emacs
如果不需要X支持,请将--without-x添加到configure命令的末尾。
运行make:
make
检查emacs二进制文件是否已构建并运行:
./src/emacs
如果Emacs正常加载,请退出并运行make install:
make install
或者使用在存储库中具有emacs 24.4.1的jessie。
harry ~ $ cat /etc/os-release
PRETTY_NAME="Raspbian GNU/Linux jessie/sid"
NAME="Raspbian GNU/Linux"
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"
harry ~ $ emacs --v
GNU Emacs 24.4.1
Copyright (C) 2014 Free Software Foundation, Inc.
GNU Emacs comes with ABSOLUTELY NO WARRANTY.
You may redistribute copies of Emacs
under the terms of the GNU General Public License.
For more information about these matters, see the file named COPYING.
harry ~ $
如果仅emacs
在终端中使用,则可以通过执行以下操作来避免安装与GUI相关的开发包的麻烦:
tar -xzvf emacs-24.4.tar.gz
cd emacs-24.4
./configure --without-x
make
sudo make install
是。我能够成功安装:
pi@raspberrypi:~ $ emacs --version
GNU Emacs 24.4.1
Copyright (C) 2014 Free Software Foundation, Inc.
GNU Emacs comes with ABSOLUTELY NO WARRANTY.
You may redistribute copies of Emacs
under the terms of the GNU General Public License.
For more information about these matters, see the file named COPYING.
pi@raspberrypi:~ $
步骤如下:
1)升级apt-get:
sudo apt-get update
2)安装emacs:
sudo apt-get install emacs
./configure
?如果是这样的话,应该提一下,以使其成为一个完整的建议。