如何在 Linux 下的 Conda 上安装 g++?
How to install g++ on Conda under Linux?
我试过了
conda install -c conda-forge gcc
但它只安装了 gcc
。我还需要 g++
.
它以包裹名称 gxx
:
运送
conda install -c conda-forge gxx
一般来说,我更喜欢使用 Conda Forge compilers
包或其子包之一(例如,cxx-compiler
),因为该规范适用于跨平台。例如,cxx-compiler
将在 Linux 上安装 g++,在 OSX 上安装 clang++,在 Windows.
上安装 vc
我试过了
conda install -c conda-forge gcc
但它只安装了 gcc
。我还需要 g++
.
它以包裹名称 gxx
:
conda install -c conda-forge gxx
一般来说,我更喜欢使用 Conda Forge compilers
包或其子包之一(例如,cxx-compiler
),因为该规范适用于跨平台。例如,cxx-compiler
将在 Linux 上安装 g++,在 OSX 上安装 clang++,在 Windows.