크레온 API 사용하기 위해 python 32bit를 사용하다가 tensorflow 설치를 시도하면 에러가 발생한다.
pip install tensorflow
“Could not find a version that satisfies the requirement tensorflow (from versions: ) No matching distribution found for tensorflow”
1.Python 설치 Bit 확인
tensorflow install error는 python 32bit를 사용하고 있었기 때문에 발생한 경우이기에
Anaconda에서 win-64, Python 3.7 환경을 구성해서 설치하면 해결
2. win-32, Python 2.7 설치
(tensorflow는 Python3이상만 지원)
conda create -n py27_32
conda activate py27_32
conda config --env --set subdir win-32
conda install python=2.7
3. win-64, Python 3.7 설치
conda create -n py37_64
conda activate py37_64
conda config --env --set subdir win-64
conda install python=3.7
반응형
'파이썬 > 팁' 카테고리의 다른 글
Pymongo.errors.OperationFailure: This MongoDB deployment does not support retryable writes. Please add retryWrites=false to your connection string. (0) | 2020.01.30 |
---|---|
Pycharm - Github 연동 (2) | 2020.01.19 |
Python 기초 자료 (0) | 2020.01.19 |
Python Anaconda ERROR 클래스가 등록되지 않았습니다. win32com (0) | 2019.10.06 |
[Pycharm] Install package globally (0) | 2019.10.05 |
댓글