ifort 未被识别为内部或外部命令
我正在使用 Visual Studio 2010 使用 Intel Visual Fortran 在 Fortran 中编译代码,并且继续收到此消息。安装已完成,没有错误,并且我认为我不需要额外的包或库。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个常见的 Windows 问题。当命令无法识别时,您通常需要修改 PATH 变量。 之类的行创建 Windows 批处理文件
使用诸如set path=c:\foo;%path%
,其中 c:\foo 是 ifort.exe 可执行文件的目录。
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.