Reputation: 337
I am compiling a code in Fortran using Visual Studio 2010 using Intel Visual Fortran and I continue to get this message. The installation was completed without errors, and i don't think I need additional packages or libraries.
Upvotes: 0
Views: 8285
Reputation: 2605
This is a general Windows question. When a command is not recognized, you typically need to modify your PATH variable. Create a Windows batch file with a line such as
set path=c:\foo;%path%
where c:\foo is the directory of the ifort.exe executable.
Upvotes: 4