본문 바로가기

오류 해결 방법

(27)
ModuleNotFoundError: No module named 'pykalman' If the error as below occurs, ModuleNotFoundError: No module named 'pykalman' You should pip install pykalman
ModuleNotFoundError: No module named 'fbprophet' If the error as below occurs, ModuleNotFoundError: No module named 'fbprophet' You should pip install Cython pip install fbprophet
ModuleNotFoundError: No module named 'tqdm' If the error as below occurs, ModuleNotFoundError: No module named 'tqdm' You should pip install tqdm
'git'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다. git clone을 이용해서 깃허브에 있는 파일을 복제하려고 하는데, 아래와 같은 오류 메시지가 나온다면 git이 설치되어 있지 않아서다. 'git'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다. 따라서 이런 경우에는 git을 설치해주면 되는데, git은 아래의 사이트에서 64-bit Git for Windows Setup을 다운로드해서 설치해주면 된다. https://git-scm.com/download/win Git - Downloading Package Download for Windows Click here to download the latest (2.42.0) 32-bit version of Git for Windows. This is the most r..
[오류] Python 명령을 실행하려면 지원되는 버전의 CPython이 필요합니다. Python 시작하기를 참조하십시오. 다음과 같은 오류가 나오면 현재 사용하고 있는 매트랩의 버전과 파이썬의 버전이 서로 맞지 않아서다. Python 명령을 실행하려면 지원되는 버전의 CPython이 필요합니다. Python 시작하기를 참조하십시오. 이럴 경우에는 매트랩이나 파이썬 중 하나의 버전을 변경해줘야 한다. 호환가능한 버전은 아래 링크에서 확인 가능하다. Versions of Python Compatible with MATLAB Products by Release See which Python versions are compatible with the MATLAB Interface to Python, MATLAB Engine for Python, and MATLAB Compiler SDK for Python. kr.mathworks..
You must install pydot (`pip install pydot`) and install graphviz (see instructions at https://graphviz.gitlab.io/download/) for plot_model to work. If the error as below occurs, You must install pydot (`pip install pydot`) and install graphviz (see instructions at https://graphviz.gitlab.io/download/) for plot_model to work. You should install below, pip install pydot pip install pydotplus pip install graphviz 만약 위의 코드로도 실행이 되지 않는다면, 아래의 홈페이지에 들어가서 exe 파일을 다운로드 하고 실행시켜준다. https://graphviz.gitlab.io/download/ Download Graph Visualization Sof..
No module named 'numpy.typing' If the error as below occurs, No module named 'numpy.typing' You should install the pip install -U numpy
No module named 'scipy' If the error as below occurs, No module named 'scipy' You should install the pip install scipy