模块 `testavg` 在文件 'testavg.d' 中,无法读取 d

module `testavg` is in file 'testavg.d' which cannot be read d

每次,我尝试 运行 一个程序,它给我一个类似于此的错误。除了下载它,我什么都没做。我试图重新安装它并得到相同的结果。它在 windows 10 台计算机上。

Error: module `testavg` is in file 'testavg.d' which cannot be read
import path[0] = C:\D\dmd2\windows\bin\..\..\src\phobos
import path[1] = C:\D\dmd2\windows\bin\..\..\src\druntime\import

https://dlang.org/download.html

这意味着D编译器找不到源文件testavg.d。将目录更改为文件所在的位置并使用 运行 相同的命令,或者提供源文件的完整路径:dmd C:/my/d/source/files/testavg.d(将 testavg.d 的路径替换为实际路径)