0

I am using python 3 on windows 7 and trying to get SCIP on it. Please see the image. I want to run a mixed integer program.

SCIP

Any further instructions will be helpful.

I downloaded SCIP 3.2.1 as seen in the image, but then I don't understand how to implement that command and where?

4
  • Please put your problem in words and mention exactly where you need help. Commented Feb 25, 2017 at 21:42
  • I did it. Please see. Commented Feb 25, 2017 at 21:45
  • So no help at all? Commented Feb 25, 2017 at 22:41
  • I am not fully familiar with SCIP, but it looks like looking through tutorial docs might solve your problem. See scip.zib.de/doc/html/SHELL.php Commented Feb 26, 2017 at 3:15

1 Answer 1

1

PySCIPOpt does not officially support Windows. There are step-by-step instructions though, in the GitHub issues.

In general, PySCIPOpt is an interface from Python to C that is built using Cython. You need to compile the interface linking to a C library of SCIP. You don't necessarily need to build this library yourself, you might want to use a precompiled one from http://scip.zib.de/#download instead.

You do need a C/C++ compiler in any case. BTW, "that command" is make which is a build tool for Unix that is used to compile code. It doesn'twork out of the box on Windows 7. You either need the Ubuntu Bash from Windows 10 or a Linux "emulator" like Cygwin.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.