라벨이 텐서플로우인 게시물 표시

[tensorflow] tensorflow 설치 및 실패 시 해결방법

이미지
tensorflow 1.15 설치 tensorflow 설치 방법은 기본적으로 아래와 같습니다. cpu pip install tensorflow==1.15.0 # or 본인이 다운받고자 하는 버전 gpu pip install tensorflow-gpu==1.15.0 # or 본인이 다운받고자 하는 버전 만약 위에와 같이 Could not find a version that satisfies the requirement tensorflow-gpu==1.15.0 에러가 발생한다면 pip update가 필요합니다. pip install --upgrade pip pip 9.0.1 -> pip 20.0.2로 업데이트 (업데이트 적용 날짜에 따라 버전은 다를 수 있습니다) pip update 이후 본인에게 맞는 버전으로 설치 시 설치 가능합니다. cpu pip install tensorflow==1.15.0 # or 본인이 다운받고자 하는 버전 gpu pip install tensorflow-gpu==1.15.0 # or 본인이 다운받고자 하는 버전