I'm relatively new to Python programming and developing in general, so I was astonished to see I had a lot of luck installing Google or-tools. That was, up until this command: $ make third_party
. The command is not recognized:
C:\Users\dbaug\Documents\Google Optimization\or-tools>make third_party
'make' is not recognized as an internal or external command,
operable program or batch file.
If I move to the tools
sub-directory, where the make.exe
file is located, the command is recognized but produces an error:
C:\Users\dbaug\Documents\Google Optimization\or-tools\tools>make third_party
g++ Makefile.cc -o Makefile
process_begin: CreateProcess((null), g++ Makefile.cc -o Makefile, ...) failed.
make (e=2): The system cannot find the file specified.
make: *** [Makefile] Error 2
Now I completed every step along the way (installed CMake and the Java JDK, etc.), including adding GLPK and SCIP to the dependencies, and also added all of the executables to my PATH
, adding the bins from VS2015, CMake, and TortoiseSVN that I installed despite the Google instructions not clearly stating to.
I know SVN is supposed to interface with the Makefile
in the or-tools repository, but it doesn't seem to recognize it - could it be something with choosing TortoiseSVN over another option? What am I doing wrong?
Also there is no terminal in the Tools menu of Microsoft Visual Studios 2015 - are they asking me to use the Developer Command Prompt for VS2015?