【Jupyter Notebook】keras의 불러오기 에러를 해결했을 때의 메모
4645 단어 KerasAnacondaJupyter-notebook
환경
Windows7
Anaconda5.3
Jupyter Notebook
파이썬 3.7
개요
아래에 설명 된대로 keras import 오류가 발생했습니다.
해결했을 때의 메모를 남긴다.
가져오기 오류
from keras.utils.np_utils import to_categorical
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-3-06c4a01452d1> in <module>()
----> 1 from keras.utils.np_utils import to_categorical
2
ModuleNotFoundError: No module named 'keras'
해결 메모
아래에 설명 된대로 keras import 오류가 발생했습니다.
해결했을 때의 메모를 남긴다.
가져오기 오류
from keras.utils.np_utils import to_categorical
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-3-06c4a01452d1> in <module>()
----> 1 from keras.utils.np_utils import to_categorical
2
ModuleNotFoundError: No module named 'keras'
해결 메모
(base) C:\Users\XXXX>conda install keras
Collecting package metadata: done
Solving environment: failed
PackagesNotFoundError: The following packages are not available from current channels:
- keras
Current channels:
- https://repo.anaconda.com/pkgs/main/win-32
- https://repo.anaconda.com/pkgs/main/noarch
- https://repo.anaconda.com/pkgs/free/win-32
- https://repo.anaconda.com/pkgs/free/noarch
- https://repo.anaconda.com/pkgs/r/win-32
- https://repo.anaconda.com/pkgs/r/noarch
- https://repo.anaconda.com/pkgs/msys2/win-32
- https://repo.anaconda.com/pkgs/msys2/noarch
To search for alternate channels that may provide the conda package you're
looking for, navigate to
https://anaconda.org
and use the search bar at the top of the page.
이 페이지 를 참고로 하고, 리포지토리에 「conda-forge」를 추가해 보려고 합니다.
(base) C:\Users\XXXX>conda config --get channels
--add channels 'defaults' # lowest priority
(base) C:\Users\XXXX>conda config --append channels conda-forge
(base) C:\Users\XXXX>conda config --get channels
--add channels 'conda-forge' # lowest priority
--add channels 'defaults' # highest priority
(base) C:\Users\XXXX>conda install keras
Collecting package metadata: done
Solving environment: done
## Package Plan ##
environment location: C:\Users\XXXX\Anaconda3
added / updated specs:
- keras
The following packages will be downloaded:
package | build
---------------------------|-----------------
_ipyw_jlab_nb_ext_conf-0.1.0| py36_0 4 KB
alabaster-0.7.12 | py36_0 17 KB
anaconda-client-1.7.2 | py36_0 197 KB
anaconda-navigator-1.9.6 | py36_0 4.8 MB
anaconda-project-0.8.2 | py36_0 496 KB
appdirs-1.4.3 | py36h28b3542_0 16 KB
asn1crypto-0.24.0 | py36_0 155 KB
astroid-2.1.0 | py36_0 269 KB
(後略)
Proceed ([y]/n)?
from keras.utils.np_utils import to_categorical
참고
Reference
이 문제에 관하여(【Jupyter Notebook】keras의 불러오기 에러를 해결했을 때의 메모), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/yut-nagase/items/1045f091f900d0ca5784
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(【Jupyter Notebook】keras의 불러오기 에러를 해결했을 때의 메모), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/yut-nagase/items/1045f091f900d0ca5784텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)