user10085055
user10085055

Reputation:

pyomo ipopt on colaboratory (colab.research.google.com)

I was happy to find out that pyomo was already pre-installed on colaboratory . Unfortunately, the solver I need is not installed. I tried to install it, but it did work. (using conda install ipopt_bin -c cachemeorg)

Any idea how to install ipop on colaboratory ?

Thanks

Upvotes: 1

Views: 620

Answers (2)

Nikita Agrawal
Nikita Agrawal

Reputation: 61

Try This :

!apt install coinor-libipopt-dev

And then this:

!pip install ipopt

Upvotes: 0

Bethany Nicholson
Bethany Nicholson

Reputation: 2828

Try this installation command:

conda install -c conda-forge ipopt

Upvotes: 0

Related Questions