This is an IPython extension for working with AMPL.
See AMPL magic: using IPython as an interface to AMPL for an introduction on how to use this extension.
It is licensed under the terms of the BSD license.
The following command installs the ampl extension using pip:
$ pip install ampl
The following command installs the ampl extension using easy_install:
$ easy_install ampl
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:
c.InteractiveShellApp.extensions = ['ampl']
Thanks Leonardo Taccari (sbebo) for implementing the realtime output.