mosek vs mosek_cli
See original GitHub issueI am having trouble installing mosek
, but mosek_cli
works.
Are these the same solvers or is there an advantage to using mosek
if mosek_cli
works?
Thanks.
(Sorry to open this as an issue on github, but not sure where else to ask the question.)
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
MOSEK Command Line Tools 10.0.33 - Documentation
MOSEK command line tools's documentation¶ · 5.1 Introduction · 5.2 Files · 5.3 Example · 5.4 Solver Parameters · 5.5 Command Line Arguments...
Read more >5 The Command Line Tool
The MOSEK command line tool communicates with the user via files and prints some execution logs and solution summary to the terminal. Input...
Read more >1 Introduction — MOSEK Command Line Tools 10.0.33
The MOSEK Optimization Suite 10.0.33 is a powerful software package capable of solving large-scale optimization problems of the following kind: linear,. conic:.
Read more >7 Debugging Tutorials
This collection of tutorials contains basic techniques for debugging optimization problems using tools available in MOSEK: optimizer log, solution summary, ...
Read more >13.1 Command Reference — MOSEK Rmosek package 10.0.32
Retrieves a string containing the version number of the utilized MOSEK optimization library. Return. ver (string) – The version number. void ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Oh dang, I know what the error is; I make a call to
python
in the build script, and it was grabbing the wrong python. Good debugging, and thanks for raising the issue!Running
python2 -c "import ctypesgencore"
doesn’t give an error.So I just renamed my anaconda3 directory so that the python3 isn’t in the path and ran
python2 -c "from gpkit.build import rebuild; rebuild()"
and it worked, so I’m now able to use mosek. I then renamed anaconda3 to its original and gpkit still working.Thanks for your help!