본문 바로가기
백엔드/Python

[python] pip install albumentations error

by 작은소행성 2020. 10. 29.

pip install albumentations 실행시  다음과 같은 에러가 나온다면

 

ERROR: Could not install packages due to an EnvironmentError: [WinError 5] 액세스가 거부되었습니다: 'c:\\users\\user\\anaconda3\\Lib\\site-packages\\cv2\\cv2.cp37-win_amd64.pyd'
Consider using the `--user` option or check the permissions.

 

파이선 3.6 버전이나 그 상위버전에서만 사용이 가능하다. 

 

pip install --user albumentations

 

To install albumentations using conda we need first to install imgaug via conda-forge collection

 

conda install -c conda-forge imgaug
conda install albumentations -c conda-forge

 

 

 

홈페이지에도 나와있다

 

pypi.org/project/albumentations/

반응형