반응형
VSCode에서 depthai 라이브러리를 설치하기 위해 pip install depthai 명령어를 실행했더니, 아래와 같이 warning이 발생했다. warning이 나오고, 그 밑에 에러도 같이 발생했다.
WARNING: Failed to write executable - trying to use .deleteme logic
ERROR: Could not install packages due to an OSError: [WinError 2] 지정된 파일을 찾을 수 없습니다: 'C:\\Python312\\Scripts\\f2py.exe' -> 'C:\\Python312\\Scripts\\f2py.exe.deleteme'
문제 해결 방법
1. 먼저, pip 업그레이드를 진행한다.
기존 버전은 23.2.1이었는데, 24.2로 업그레이드를 진행했다.
python.exe -m pip install --upgrade pip
위의 명령어를 실행했는데, 권한 문제로 인해 권한 에러가 발생했다.
ERROR: Could not install packages due to an OSError: [WinError 5] 액세스가 거부되었습니다: 'c:\\python312\\lib\\site-packages\\pip-23.2.1.dist-info\\AUTHORS.txt' Consider using the `--user` option or check the permissions.
이 경우에, 위의 명령어 뒤에 --user 를 넣고 실행하면 된다.
python.exe -m pip install --upgrade pip --user
반응형
최근댓글