Reputation:
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
Reputation: 61
Try This :
!apt install coinor-libipopt-dev
And then this:
!pip install ipopt
Upvotes: 0
Reputation: 2828
Try this installation command:
conda install -c conda-forge ipopt
Upvotes: 0