본문 바로가기

Computer/Tensorflow

[Keras] 아나콘다에서 시작할 때마다 이상한 메세지가 뜬다면?


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