I've got this weird problem:
I added the path of libsvm
's .exe files to my PATH
. When I type svm-train
(a libsvm command) into my cmd - it recognizes the command, and works as expected.
When I use python's IDLE GUI, and try:
os.system('svm-train')
it also works properly.
However, when I use the exact same command [os.system('svm-train')] in Eclipse (usingn Pydev), it gives me the following error:
'svm-train' is not recognized as an internal or external command,
operable program or batch file.
Any idea what the problem could be?
Thanks!