Skip to content

Instantly share code, notes, and snippets.

@vicente-gonzalez-ruiz
Last active February 17, 2023 07:42
Show Gist options
  • Save vicente-gonzalez-ruiz/c82a4a281d06a58e5b22435706037a6b to your computer and use it in GitHub Desktop.
Save vicente-gonzalez-ruiz/c82a4a281d06a58e5b22435706037a6b to your computer and use it in GitHub Desktop.
Emacs + elpy
  1. Enable MELPA. Add to ~/.emacs;
(require 'package)
(add-to-list 'package-archives
             '("melpa-stable" . "https://stable.melpa.org/packages/"))
  1. Install Elpy. In Erun x package-install elpy .

  2. Enable Elpy by default. Add to ~/.emacs:

(package-initialize)
(elpy-enable)
  1. (Optional) Configure Elpy with <Esc> x elpy-config <Enter>.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment