Error - Could not find a version that satisfies the requirement tensorflow (from versions: ) 해결방법

CODEDRAGON Development/Python

반응형

 

 

 

에러 메시지

Could not find a version that satisfies the requirement tensorflow (from versions: )

C:\Python\Python36-32\Scripts>pip install tensorflow
Collecting tensorflow
  Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
 
C:\Python\Python36-32\Scripts>

 

 

 

 

 

오류 원인

텐서플로우 설치 파일은 64bit(x64)이기 때문에 32bit(x86) 파이썬으로 설치를 시도할 경우 해당 에러 메시지가 발생합니다.

 

폴더 형식

Python36-32

 

구분 설명
36 파이썬 버전을 표시합니다.
32 bit기반의 파이썬인지 표시합니다.
32 파이썬 설치 폴더명에 "-32"라고 되어 있으면 32bit 파이썬입니다.
64 파이썬 설치 폴더명에 "-64"라고 되어 있으면 64bit 파이썬입니다.
 

  

 

 

 

 

해결방법

64bit 버전의 파이썬을 설치한 다시 설치를 시도합니다.

https://codedragon.tistory.com/7539

 

Windows용 Python 다운로드

Windows용 Python 다운로드 홈페이지에 접속 https://www.python.org/ 상단 메뉴에서 [Download] >> [Windows] https://www.python.org/downloads/ https://www.python.org/downloads/windows/ 자신의 운영체제..

codedragon.tistory.com

 

 

 

 

반응형

'Development > Python' 카테고리의 다른 글

Jpype - Install(설치하기)  (0) 2021.11.18
ModuleNotFoundError: No module named 'jpype' - 해결방법  (0) 2021.11.11
pip version update - pip 버전 업데이트  (0) 2021.11.11
Perceptron  (0) 2021.06.09
행렬 연산  (0) 2021.06.02