Install python-glpk












1















I want to install python-glpk
I followed the instructions here:
https://en.wikibooks.org/wiki/GLPK/Python



But when I tried to do this:



import glpk
print glpk.glp_version()


I have these errors



enter image description here



Thank you










share|improve this question

























  • It is known bug in Ubuntu 16.04 LTS, see fix in my answer below.

    – N0rbert
    Jan 21 at 21:24
















1















I want to install python-glpk
I followed the instructions here:
https://en.wikibooks.org/wiki/GLPK/Python



But when I tried to do this:



import glpk
print glpk.glp_version()


I have these errors



enter image description here



Thank you










share|improve this question

























  • It is known bug in Ubuntu 16.04 LTS, see fix in my answer below.

    – N0rbert
    Jan 21 at 21:24














1












1








1


1






I want to install python-glpk
I followed the instructions here:
https://en.wikibooks.org/wiki/GLPK/Python



But when I tried to do this:



import glpk
print glpk.glp_version()


I have these errors



enter image description here



Thank you










share|improve this question
















I want to install python-glpk
I followed the instructions here:
https://en.wikibooks.org/wiki/GLPK/Python



But when I tried to do this:



import glpk
print glpk.glp_version()


I have these errors



enter image description here



Thank you







software-installation






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 21 at 20:10









N0rbert

22.8k649108




22.8k649108










asked Jan 21 at 19:50









Cult 24Cult 24

82




82













  • It is known bug in Ubuntu 16.04 LTS, see fix in my answer below.

    – N0rbert
    Jan 21 at 21:24



















  • It is known bug in Ubuntu 16.04 LTS, see fix in my answer below.

    – N0rbert
    Jan 21 at 21:24

















It is known bug in Ubuntu 16.04 LTS, see fix in my answer below.

– N0rbert
Jan 21 at 21:24





It is known bug in Ubuntu 16.04 LTS, see fix in my answer below.

– N0rbert
Jan 21 at 21:24










1 Answer
1






active

oldest

votes


















0














Bug



For Ubuntu 16.04 LTS it is known issue - it was reported to LaunchPad.net on 2016-10-02 as bug 1629672.



Fix



We can fix this bug by installation of previous version of python-ply component with pip into your home folder:



#sudo apt-get install python-glpk # you did this before in question
sudo apt-get install python-pip
pip install ply==3.4 --user


And then test it with simple script (name it glpk_test.py) with contents:



#!/usr/bin/python2
import glpk
print glpk.glp_version()


then make it executable with chmod +x glpk_test.py and execute with ./glpk_test.py.



The output on Ubuntu 16.04 LTS will be:




4.57






share|improve this answer


























  • Hi, Thanks for the quick response I did it, but nothing happend. The steps that I followed to install are: 1) sudo apt-get install python-glpk 2) sudo apt-get install glpk-utils 3) sudo apt-get install python-pip 4) pip install ply==3.4 --user Am I right?

    – Cult 24
    Jan 21 at 22:44













  • Just tested this method on my fully upgraded Ubuntu 16.04 LTS - it results in 4.57 with these steps.

    – N0rbert
    Jan 22 at 9:41











  • Ok it works! Thanks

    – Cult 24
    Jan 22 at 17:11











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1111753%2finstall-python-glpk%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














Bug



For Ubuntu 16.04 LTS it is known issue - it was reported to LaunchPad.net on 2016-10-02 as bug 1629672.



Fix



We can fix this bug by installation of previous version of python-ply component with pip into your home folder:



#sudo apt-get install python-glpk # you did this before in question
sudo apt-get install python-pip
pip install ply==3.4 --user


And then test it with simple script (name it glpk_test.py) with contents:



#!/usr/bin/python2
import glpk
print glpk.glp_version()


then make it executable with chmod +x glpk_test.py and execute with ./glpk_test.py.



The output on Ubuntu 16.04 LTS will be:




4.57






share|improve this answer


























  • Hi, Thanks for the quick response I did it, but nothing happend. The steps that I followed to install are: 1) sudo apt-get install python-glpk 2) sudo apt-get install glpk-utils 3) sudo apt-get install python-pip 4) pip install ply==3.4 --user Am I right?

    – Cult 24
    Jan 21 at 22:44













  • Just tested this method on my fully upgraded Ubuntu 16.04 LTS - it results in 4.57 with these steps.

    – N0rbert
    Jan 22 at 9:41











  • Ok it works! Thanks

    – Cult 24
    Jan 22 at 17:11
















0














Bug



For Ubuntu 16.04 LTS it is known issue - it was reported to LaunchPad.net on 2016-10-02 as bug 1629672.



Fix



We can fix this bug by installation of previous version of python-ply component with pip into your home folder:



#sudo apt-get install python-glpk # you did this before in question
sudo apt-get install python-pip
pip install ply==3.4 --user


And then test it with simple script (name it glpk_test.py) with contents:



#!/usr/bin/python2
import glpk
print glpk.glp_version()


then make it executable with chmod +x glpk_test.py and execute with ./glpk_test.py.



The output on Ubuntu 16.04 LTS will be:




4.57






share|improve this answer


























  • Hi, Thanks for the quick response I did it, but nothing happend. The steps that I followed to install are: 1) sudo apt-get install python-glpk 2) sudo apt-get install glpk-utils 3) sudo apt-get install python-pip 4) pip install ply==3.4 --user Am I right?

    – Cult 24
    Jan 21 at 22:44













  • Just tested this method on my fully upgraded Ubuntu 16.04 LTS - it results in 4.57 with these steps.

    – N0rbert
    Jan 22 at 9:41











  • Ok it works! Thanks

    – Cult 24
    Jan 22 at 17:11














0












0








0







Bug



For Ubuntu 16.04 LTS it is known issue - it was reported to LaunchPad.net on 2016-10-02 as bug 1629672.



Fix



We can fix this bug by installation of previous version of python-ply component with pip into your home folder:



#sudo apt-get install python-glpk # you did this before in question
sudo apt-get install python-pip
pip install ply==3.4 --user


And then test it with simple script (name it glpk_test.py) with contents:



#!/usr/bin/python2
import glpk
print glpk.glp_version()


then make it executable with chmod +x glpk_test.py and execute with ./glpk_test.py.



The output on Ubuntu 16.04 LTS will be:




4.57






share|improve this answer















Bug



For Ubuntu 16.04 LTS it is known issue - it was reported to LaunchPad.net on 2016-10-02 as bug 1629672.



Fix



We can fix this bug by installation of previous version of python-ply component with pip into your home folder:



#sudo apt-get install python-glpk # you did this before in question
sudo apt-get install python-pip
pip install ply==3.4 --user


And then test it with simple script (name it glpk_test.py) with contents:



#!/usr/bin/python2
import glpk
print glpk.glp_version()


then make it executable with chmod +x glpk_test.py and execute with ./glpk_test.py.



The output on Ubuntu 16.04 LTS will be:




4.57







share|improve this answer














share|improve this answer



share|improve this answer








edited Jan 22 at 9:42

























answered Jan 21 at 20:10









N0rbertN0rbert

22.8k649108




22.8k649108













  • Hi, Thanks for the quick response I did it, but nothing happend. The steps that I followed to install are: 1) sudo apt-get install python-glpk 2) sudo apt-get install glpk-utils 3) sudo apt-get install python-pip 4) pip install ply==3.4 --user Am I right?

    – Cult 24
    Jan 21 at 22:44













  • Just tested this method on my fully upgraded Ubuntu 16.04 LTS - it results in 4.57 with these steps.

    – N0rbert
    Jan 22 at 9:41











  • Ok it works! Thanks

    – Cult 24
    Jan 22 at 17:11



















  • Hi, Thanks for the quick response I did it, but nothing happend. The steps that I followed to install are: 1) sudo apt-get install python-glpk 2) sudo apt-get install glpk-utils 3) sudo apt-get install python-pip 4) pip install ply==3.4 --user Am I right?

    – Cult 24
    Jan 21 at 22:44













  • Just tested this method on my fully upgraded Ubuntu 16.04 LTS - it results in 4.57 with these steps.

    – N0rbert
    Jan 22 at 9:41











  • Ok it works! Thanks

    – Cult 24
    Jan 22 at 17:11

















Hi, Thanks for the quick response I did it, but nothing happend. The steps that I followed to install are: 1) sudo apt-get install python-glpk 2) sudo apt-get install glpk-utils 3) sudo apt-get install python-pip 4) pip install ply==3.4 --user Am I right?

– Cult 24
Jan 21 at 22:44







Hi, Thanks for the quick response I did it, but nothing happend. The steps that I followed to install are: 1) sudo apt-get install python-glpk 2) sudo apt-get install glpk-utils 3) sudo apt-get install python-pip 4) pip install ply==3.4 --user Am I right?

– Cult 24
Jan 21 at 22:44















Just tested this method on my fully upgraded Ubuntu 16.04 LTS - it results in 4.57 with these steps.

– N0rbert
Jan 22 at 9:41





Just tested this method on my fully upgraded Ubuntu 16.04 LTS - it results in 4.57 with these steps.

– N0rbert
Jan 22 at 9:41













Ok it works! Thanks

– Cult 24
Jan 22 at 17:11





Ok it works! Thanks

– Cult 24
Jan 22 at 17:11


















draft saved

draft discarded




















































Thanks for contributing an answer to Ask Ubuntu!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1111753%2finstall-python-glpk%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to reconfigure Docker Trusted Registry 2.x.x to use CEPH FS mount instead of NFS and other traditional...

is 'sed' thread safe

How to make a Squid Proxy server?