ngspice安装错误

ngspice安装错误

尝试安装 ngspice 时显示此错误

config.status:错误:在/home/farazrabbani/Downloads/ngspice-31/release': config.status: error: Something went wrong bootstrapping makefile fragments for automatic dependency tracking. Try re-running configure with the '--disable-dependency-tracking' option to at least be able to build the package (albeit without support for automatic dependency tracking). Seeconfig.log 中了解更多详细信息

我尝试从各种网站寻找解决方案,但找不到

请帮助我。

答案1

您实际上不需要从源代码编译 NGSpice。

可从官方获得多元宇宙存储库。要安装,请执行以下操作:

sudo add-apt-repository multiverse
sudo apt-get update
sudo apt-get install ngspice

如果您需要从源代码编译它 - 在软件和更新中启用源代码存储库,然后获取构建依赖项:

sudo apt-get build-dep ngspice

然后按照计划继续编译过程。

相关内容