newsGNU Hyperbole - News: Installing Hyperbole from GNU-devel ELPA Packages

 
 
Latest News
GNU Hyperbole Major Release 9 (V9.0.1) Rhapsody posted by matsl, Sun 10 Mar 2024 10:22:58 PM UTC
Installing Hyperbole from GNU-devel ELPA Packages posted by matsl, Thu 24 Nov 2022 10:33:37 PM UTC
GNU Hyperbole 7.0.3 is the latest release posted by rsw, Mon 22 Jul 2019 04:16:06 AM UTC

Installing Hyperbole from GNU-devel ELPA Packages

Item posted by Mats Lidell <matsl> on Thu 24 Nov 2022 10:33:37 PM UTC.

Installing the latest development version of Hyperbole


The latest development version of Hyperbole can be installed directly from the GNU-devel ELPA Packages using built-in Emacs Package Manager.

The Elpa GNU-devel package repository provides a development version of Hyperbole. It pulls from the latest Hyperbole development branch to get the tip version and makes an installable package.  This is done on a daily basis. Installing this does not require any new package manager software.  Since Hyperbole is a mature package, this version is usually fine to use and is updated on a day-to-day basis.  But new features are tested on this branch and once in awhile it may break for a short time before a fix is pushed.

To download and install this version of the Hyperbole, you should add the following lines to your personal Emacs initialization file, typically "~/.emacs". (For further details, see info page "(emacs)Init File", or Init-File).


(when (< emacs-major-version 27)
  (error "Hyperbole requires Emacs 27 or above; you are running version %d" emacs-major-version))
(require 'package)
(add-to-list 'package-archives '("gnu-devel" . "https://elpa.gnu.org/devel/"))
(unless (package-installed-p 'hyperbole)
  (package-refresh-contents)
  (package-install 'hyperbole))
(hyperbole-mode 1)


Now save the file and restart Emacs.  Hyperbole will then be downloaded and compiled for use with your version of Emacs; give it a minute or two. You may see a bunch of compilation warnings but these can be safely ignored.


 

Back to the top

Powered by Savane 3.13-cf05.
Corresponding source code