I'm actually a .NET programmer (C#), and have not enough experience with Python, but recently had to work on a Python project involving Integer Optimization, and found SCIP a good option. I've tried to install it using the following link:
https://www.scipopt.org/doc-3.2.1/html/PYTHON_INTERFACE.php
But as I'm new in the Python (and open source) world, I don't know where should I run this command:
make SHARED=true scipoptlib
is there any easy way to quickly install the package so I can start working with SCIP in Phyotn? I work on Windows and use VS code as my IDE (Python 3.11) Currently I get 'couldn't be resolved' error when trying to import it in my Phyton file:
from pyscipopt import Model
BTW, can I use SCIP directly in a C# project? It will then be much easier for me. I'll be grateful for any tips or hints.