Skip to content

Latest commit

 

History

History
55 lines (34 loc) · 1.15 KB

install.rst

File metadata and controls

55 lines (34 loc) · 1.15 KB

Installation

Users

To use agate install it with pip:

pip install agate

Note

Need more speed? Upgrade to Python 3. It's 3-5x faster than Python 2.

If you must use Python 2 you can you can pip install cdecimal for a performance boost.

Developers

If you are a developer that also wants to hack on agate, install it from git:

git clone git://github.com/onyxfish/agate.git
cd agate
mkvirtualenv agate

# If running Python 3 (strongly recommended for development)
pip install -r requirements-py3.txt

# If running Python 2
pip install -r requirements-py2.txt

python setup.py develop
tox

Note

To run the agate tests with coverage:

nosetests --with-coverage tests

Supported platforms

agate supports the following versions of Python:

  • Python 2.7
  • Python 3.3+
  • PyPy

It is tested primarily on OSX, but due to its minimal dependencies it should work perfectly on both Linux and Windows.

Note

iPython or Jupyter user? Agate works great there too.