Deep Learning & Machine Learning/Tensorflow&PyTorch 개발환경
Tensorflow 설치시 에러 – [WinError 32] 다른 프로세스가 파일을 사용 중이기 때문에 프로세스가 액세스 할 수 없습니다
webnautes
2023. 10. 13. 22:20
반응형
텐서플로우를 삭제했다가 재설치시 다음과 같은 에러가 나는 경우가 있습니다.
Uninstalling setuptools-40.8.0:
Could not install packages due to an EnvironmentError: [WinError 32] 다른 프로세스가 파일을 사용 중이기 때문에 프로세스가 액세스 할 수 없습니다: 'c:\\pycharmprojects\\keras\\venv\\lib\\site-packages\\setuptools-40.8.0-py3.7.egg'
Consider using the `--user` option or check the permissions.
2020. 3. 4. 최초작성
메시지에 나오는대로 –user 를 사용해도 해결이 되지 않더군요…
대신 –no-cache-dir 옵션을 추가했더니 해결이 되었습니다.
( https://stackoverflow.com/a/58022825 )
pip install --no-cache-dir tensorflow==2.0
반응형