바뀜

177 바이트 추가됨 ,  2021년 10월 29일 (금) 17:48
37번째 줄: 37번째 줄:  
#<code>pip install tensorflow</code>를 할 때 <code>ERROR: Could not find a version that satisfies the requirement tensorflow</code>가 뜬다면 파이썬이 64bit용이 아니기 때문이다.(텐서플로우는 64bit 기반)
 
#<code>pip install tensorflow</code>를 할 때 <code>ERROR: Could not find a version that satisfies the requirement tensorflow</code>가 뜬다면 파이썬이 64bit용이 아니기 때문이다.(텐서플로우는 64bit 기반)
 
# cpu stable 버전이 요구하는 넘파이 버전이 일정 미만일 수 있다.
 
# cpu stable 버전이 요구하는 넘파이 버전이 일정 미만일 수 있다.
 +
텐서플로우 버전 확인
 +
 +
파이썬 콘솔에서 다음과 같이 진행하거나, 적당히 파일 실행해보자.
 +
 +
$ python
 +
 +
> import tensorflow as tf
 +
 +
> tf.__version__
 
|-
 
|-
 
|GPU사용준비
 
|GPU사용준비