ubuntu에서 pip install mpi4py
로 mpi4py를 설치할 때 다음과 같이 에러메세지가 나는 경우가 있다.
....
error: Cannot compile MPI programs. Check your configuration!!!
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for mpi4py
Failed to build mpi4py
ERROR: Could not build wheels for mpi4py, which is required to install pyproject.toml-based projects
나의 경우는 pytorch/pytorch:2.1.1-cuda12.1-cudnn8-devel
이 이미지를 사용한 컨테이너에서 나는 에러였다.
이때 which python
으로 확인해보면 /opt/conda/bin/python
을 사용하고 있다.
때문에 conda install -c conda-forge mpi4py mpich
으로 설치해주면 잘 된다.
[출처]
728x90
'개발' 카테고리의 다른 글
[ubuntu] PID로 실행중인 파일 위치 찾기 (0) | 2024.06.07 |
---|---|
[websocket] (1) python websocket 서버 생성 & 클라이언트 테스트 (0) | 2024.02.28 |
[ChatGPT가 알려주는] overflow, underflow 파이썬 예시 (0) | 2024.02.19 |
[ubuntu] nohup 파일 생성 시 현재 날짜로 생기게 하기 (0) | 2024.02.15 |
[ubuntu] crontab 사용법 간단정리 (1) | 2024.02.10 |