--
You received this message because you are subscribed to the Google Groups "Pyomo Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyomo-forum...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Has the new version been released?
--
Where is it?
Pyomo 4.0 is 99% compatible with the first edition of The Book. One of the biggest differences is that the main namespace for pyomo has changed from coopr to pyomo. So, you should get into the habit of replacing:
from coopr.pyomo import *
with
from pyomo.environ import *
You can also install the latest release of Coopr (that is, “pip install coopr”), which will install a compatibility layer that will allow the vast majority of existing models and scripts to still run.
john
--