You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can try downloading and installing it directly rather than through Homebrew. I have also historically had problems getting glpk installed. You can use docker to start up a clean environment and get glpk installed there. I did this in a previous project, here is an excerpt from my old Dockerfile
FROM ruby:2.6.3
# throw errors if Gemfile in the docker image has been modified since Gemfile.lock
RUN bundle config --global frozen 1
# install some standard stuff
RUN apt-get -y update
RUN apt-get -y install sudo
RUN apt-get -y install dialog apt-utils
RUN apt-get -y install curl
RUN apt-get -y install build-essential
RUN apt-get -y install manpages-dev
RUN apt-get -y install wget
# install glpk version 4.44
RUN apt-get -y install gnupg
RUN wget ftp://ftp.gnu.org/gnu/glpk/glpk-4.44.tar.gz
RUN wget ftp://ftp.gnu.org/gnu/glpk/glpk-4.44.tar.gz.sig
RUN gpg --keyserver keys.gnupg.net --recv-keys 5981E818
RUN gpg --verify glpk-4.44.tar.gz.sig glpk-4.44.tar.gz
RUN tar -xzvf glpk-4.44.tar.gz
# configure and finalize glpk
RUN cd glpk-4.44 && ./configure && make check && examples/glpsol --version
RUN cd glpk-4.44 && make uninstall
RUN cd glpk-4.44 && make install
RUN which glpsol
Does this run on Mac OS? I installed
glpk
with Homebrew and I get this:The text was updated successfully, but these errors were encountered: