머신러닝,딥러닝
conda에 gcc 설치하기 명령어
mcdn
2023. 2. 15. 14:48
반응형
conda에 gcc 설치하기
conda에 gcc를 설치해야 했다.
conda install -c conda-forge gcc
를 했음에도 잘 설치되지 않았다.
해결방안 gxx
conda install -c conda-forge gxx
conda install -c conda-forge cxx-compiler
이 두 개를 다 설치하니까 비로소 되었다.
출처 :
https://stackoverflow.com/questions/69485181/how-to-install-g-on-conda-under-linux
반응형