ifort 未被识别为内部或外部命令

发布于 2024-10-17 17:36:55 字数 109 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

平安喜乐 2024-10-24 17:36:56

这是一个常见的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文