Pyipopt is a connector such that you can use Ipopt easily via Python
Introduction
To use pyipopt, it's very easy, just import pyipopt. It provides one function
- create : it creates the problem.
Once you create the instance, you can solve it via
nlp.solve(starting_point)
where nlp is the instance you created.
The example.py file contains all the detail.