C:\Users\user>python C:\Users\franc\Anaconda3\etc\keras\load_config.py
1>temp.txt
C:\Users\user>set /p KERAS_BACKEND= 0<temp.txt
C:\Users\user>del temp.txt
C:\Users\user>python -c "import keras" 1>nul 2>&1
C:\Users\user>if errorlevel 1 (
ver 1>nul
set "KERAS_BACKEND=theano"
python -c "import keras" 1>nul 2>&1
)
위의 문장이 아나콘다 (콘다 프롬프트)를 실행할 때마다 나온다면?
원인은 keras 설치 시 어디선가 꼬였기 때문인데, 솔루션은 의외로 간단하다.
keras 를 지웠다가 다시 설치하면, 위의 메세지가 다시 나오지 않는다.
conda remove keras
conda install keras
'Computer > Tensorflow' 카테고리의 다른 글
ImportError: numpy.core.multiarray failed to import 해결? (0) | 2018.12.04 |
---|---|
Cuda 9.x 설치가 안 될 때. VSI를 끄세요. (1) | 2018.07.06 |
[Tensorflow] DLL Load failed: 지정된 모듈을 찾을 수 없습니다 해결법 (3) | 2017.07.28 |