我试着用conda安装了gcc-5 -c psi4,然后我用
conda install gcc-5 -c psi4 在我的ubuntu20上。
然而,它看起来:
ERROR conda.core.link:_execute(699): An error occurred while installing package 'psi4::gcc-5-5.2.0-1'.发布于 2021-07-30 20:15:01
这是一个来自不常见渠道的非常旧的包。通过defaults通道提供了一款GCC 5.4:
conda install -c anaconda gcc_linux-64=5
## example usage
$GCC --version
x86_64-conda_cos6-linux-gnu-gcc (crosstool-NG fa8859cb) 5.4.0
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.可能比调试psi4 one更方便。
https://stackoverflow.com/questions/68592725
复制相似问题