반응형
텐서플로우를 삭제했다가 재설치시 다음과 같은 에러가 나는 경우가 있습니다.
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.
메시지에 나오는대로 --user 를 사용해도 해결이 되지 않더군요...
대신 --no-cache-dir 옵션을 추가했더니 해결이 되었습니다.
( https://stackoverflow.com/a/58022825 )
(venv) C:\PycharmProjects\keras>pip install --no-cache-dir tensorflow==2.0
반응형
'Machine Learning & Deep Learning > Tensorflow 개발환경' 카테고리의 다른 글
Windows 10에 CUDA Toolkit 11.0 cuDNN 8 Tensorflow 설치하는 방법 (3) | 2021.01.11 |
---|---|
Ubuntu 20.04에 CUDA Toolkit와 cuDNN, Tensorflow 설치하기 (7) | 2020.08.31 |
Tensorflow 에러 - ImportError: DLL load failed: 지정된 모듈을 찾을 수 없습니다 (9) | 2020.06.21 |
Windows 10에 CUDA와 cuDNN, Tensorflow 설치하기 (8) | 2020.06.21 |
Tensorflow 설치시 에러 - [WinError 32] 다른 프로세스가 파일을 사용 중이기 때문에 프로세스가 액세스 할 수 없습니다: (0) | 2020.03.04 |
PyCharm에 TensorFlow 설치하여 사용하는 방법( Windows / Ubuntu ) (95) | 2019.08.30 |
Tensorflow와 OpenCV를 PyCharm 프로젝트에서 같이 사용하는 방법 (0) | 2018.08.29 |