728x90
반응형
pip 패키지로 설치했을 때 mmcv가 import 안되는 현상이 있다.
ModuleNotFoundError: No module named 'mmcv'
이럴 때 mmcv 대신 mmcv-full를 설치해주면 된다는 글이 있어서 시도해봤는데 똑같은 현상이 계속 일어났다.
그래서 결국 git에 있는 소스를 빌드해서 설치해주었다.
git clone https://github.com/open-mmlab/mmcv.git
MMCV_WITH_OPS=1 pip install -e .
그랬더니 아래와 같이 mmengine 이 없다길래
ModuleNotFoundError: No module named 'mmengine'
mmengine을 설치해주었더니 import 완료.
pip install mmengine
참고자료 1 : https://mmcv.readthedocs.io/en/latest/get_started/build.html
728x90
반응형
'삽질 기록' 카테고리의 다른 글
MacBook M3에서 크롬 실행 안되는 문제 (3) | 2024.08.08 |
---|---|
DistributedDataParallel 사용 시 find_unused_parameters=True 관련 에러 (1) | 2023.11.15 |
npm ERR! To see a list of scripts, run (0) | 2023.08.01 |
Parcel encountered errors (0) | 2023.07.31 |
mount.davfs: can't evaluate path of mount point (null) (0) | 2023.04.18 |