You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Brett Langdon 62fa668225 add elpy 1.2.1 12 years ago
..
snippets/python-mode update elpy to 1.2.1 12 years ago
LICENSE update elpy to 1.2.1 12 years ago
README update elpy to 1.2.1 12 years ago
elpy-autoloads.el add elpy 1.2.1 12 years ago
elpy-pkg.el update elpy to 1.2.1 12 years ago
elpy-pkg.elc add elpy 1.2.1 12 years ago
elpy-refactor.el update elpy to 1.2.1 12 years ago
elpy-refactor.elc add elpy 1.2.1 12 years ago
elpy.el update elpy to 1.2.1 12 years ago
elpy.elc add elpy 1.2.1 12 years ago

README

=======================================
Elpy, the Emacs Lisp Python Environment
=======================================

Elpy is an Emacs package to bring powerful Python editing to Emacs. It
combines a number of other packages, both written in Emacs Lisp as
well as Python.

.. image:: https://secure.travis-ci.org/jorgenschaefer/elpy.png
:alt: Build Status
:target: http://travis-ci.org/jorgenschaefer/elpy
:width: 77px
:height: 19px

Documentation
=============

You can find the documentation `on the wiki`__.

.. __: https://github.com/jorgenschaefer/elpy/wiki

Quick Installation
==================

You can also read the `detailed installation instructions`__.

.. __: https://github.com/jorgenschaefer/elpy/wiki/Installation

First, install the required Python packages:::

pip install elpy rope

(Note: If you are installing the development version of elpy, do not
install the elpy Python package, but simply put the repository in your
``PYTHONPATH``.)

Evaluate this in your ``*scratch*`` buffer:

.. code-block:: lisp

(require 'package)
(add-to-list 'package-archives
'("marmalade" . "http://marmalade-repo.org/packages/"))


Then run ``M-x package-refresh-contents`` to load the contents of the
new repository, and ``M-x package-install RET elpy RET`` to install
elpy.

Finally, add the following to your ``.emacs``:

.. code-block:: lisp

(package-initialize)
(elpy-enable)

Done.