GitXplorerGitXplorer
v

iampl

public
15 stars
7 forks
0 issues

Commits

List of commits on branch master.
Unverified
859e8997c74eb80c583ea0e5983e32ff6c2acbff

Fix Python 3 compatibility issues

vvitaut committed 9 years ago
Unverified
dde0f97f9cec6b009c6687b9c823aa2e5c17c41a

Fix compatibility with Python 3

vvitaut committed 9 years ago
Unverified
b72857b65e7438b507d7ccedb3daf2ee445a303a

Update README.rst

vvitaut committed 10 years ago
Unverified
fc31e503fd43e5cebb2d5f7b2dfa2416bfc3ebb8

Update the readme

vvitaut committed 11 years ago
Unverified
f749395ec707d1bbb2c6ebe8a29d2ac7c67b27e2

Move examples to the examples directory. Add geochart example.

vvitaut committed 11 years ago
Unverified
ec44dff2cddb4a5533e944c562fd9f25ec45e699

Correct the pip command

vvitaut committed 11 years ago

README

The README file for this repository.

========================= IPython interface to AMPL

This is an IPython extension for working with AMPL.

See AMPL magic: using IPython as an interface to AMPL <http://zverovich.net/2013/01/08/ampl-magic-using-ipython-as-an-interface-to-ampl.html>__ for an introduction on how to use this extension.

It is licensed under the terms of the BSD license <COPYING.txt>__.

Installation

Using pip

The following command installs the ampl extension using pip <http://www.pip-installer.org/en/latest/>__::

$ pip install ampl

Using easy_install

The following command installs the ampl extension using easy_install <http://pythonhosted.org/setuptools/easy_install.html>__::

$ easy_install ampl

Usage

To load the ampl extension while IPython is running, use the %load_ext magic::

In [1]: %load_ext ampl

To load it each time IPython starts, list it in your configuration file:

.. code-block:: python

c.InteractiveShellApp.extensions = ['ampl']

Credits

Thanks Leonardo Taccari (sbebo <https://github.com/sbebo>__) for implementing the realtime output.