관심있는 주제/Error

ERROR: Could not find a version that satisfies the requirement tensorflow

Lynn123 2023. 2. 2. 19:25
반응형

문제 상황

pip install tensorflow==1.15.0

위 커맨드로 간단하게 tensorflow 1.15.5를 설치하려고 했는데, 맞는 버전이 없다며 설치가 안 됐던 상황

 

[에러 메세지]
Looking in indexes: https://pypi.org/simple, https://pypi.ngc.nvidia.com /usr/share/python-wheels/urllib3-1.25.8-py2.py3-none-any.whl/urllib3/connectionpool.py:999: InsecureRequestWarning: Unverified HTTPS request is being made to host 'pypi.ngc.nvidia.com'. Adding certificate verification is strongly advised.
See: https://urllib3.readthedocs.io/en/latest/advanced-usage.
html#ssl-warnings ERROR: Could not find a version that satisfies the requirement tensorflow==1.15.5 (from versions: 2.2.0, 2.2.1, 2.2.2, 2.2.3, 2.3.0, 2.3.1, 2.3.2, 2.3.3, 2.3.4, 2.4.0, 2.4.1, 2.4.2, 2.4.3, 2.4.4, 2.5.0, 2.5.1, 2.5.2, 2.5.3, 2.6.0rc0, 2.6.0rc1, 2.6.0rc2, 2.6.0, 2.6.1, 2.6.2, 2.6.3, 2.6.4, 2.6.5, 2.7.0rc0, 2.7.0rc1, 2.7.0, 2.7.1, 2.7.2, 2.7.3, 2.7.4, 2.8.0rc0, 2.8.0rc1, 2.8.0, 2.8.1, 2.8.2, 2.8.3, 2.8.4, 2.9.0rc0, 2.9.0rc1, 2.9.0rc2, 2.9.0, 2.9.1, 2.9.2, 2.9.3, 2.10.0rc0, 2.10.0rc1, 2.10.0rc2, 2.10.0rc3, 2.10.0, 2.10.1, 2.11.0rc0, 2.11.0rc1, 2.11.0rc2, 2.11.0)

 

해결 방법

python version을 3.7로 낮췄더니 해결 됨

python version 3.7로 낮춰서 가상환경 다시 생성함

(원래 python version : 3.8.10)

 

참고 링크

https://stackoverflow.com/questions/61491893/i-cannot-install-tensorflow-version-1-15-through-pip

반응형