Skip to content

Instantly share code, notes, and snippets.

@jeffwong
Created September 17, 2014 16:58
Show Gist options
  • Save jeffwong/b980f38366e0a7810dd7 to your computer and use it in GitHub Desktop.
Save jeffwong/b980f38366e0a7810dd7 to your computer and use it in GitHub Desktop.
#Getting sigopt to run on Ubuntu
sudo apt-get install gcc-multilib
wget http://ftp.gnu.org/gnu/glpk/glpk-4.39.tar.gz
tar -xzf glpk-4.39.tar.gz
cd glpk-4.39/
./configure
make
sudo make install
LD_LIBRARY_PATH=/usr/local/lib
export LD_LIBRARY_PATH
wget http://tfinley.net/software/pyglpk/pyglpk-0.3.tar.bz2
tar xjf pyglpk-0.3.tar.bz2
cd pyglpk-0.3/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment