Error Handling
-
vue error 해결법 : EPERM: operation not permitted, lstat 'C:\.nuxt\components\nuxt-build-indicator.vue'Error Handling 2020. 6. 7. 14:44
vue 를 통해 서버를 구동할 때 아래와 같은 에러가 나타날 때가 있다. vue error : Error: EPERM: operation not permitted, lstat 'C:\.nuxt\components\nuxt-build-indicator.vue' 해결법 이는 vs code 종종 발생하며 간단하게 서버를 종료시킨 뒤 vscode를 재실행 해주면 해결된다.
-
git error 해결법 : LF will be replaced by CRLF in README.md.Error Handling 2020. 6. 7. 11:17
깃 처음 사용시 아래와 같은 에러가 뜰때가 있다. warning: LF will be replaced by CRLF in README.md 위는 유닉스 시스템과 윈도우 사이에 new line 즉, 줄바꿈 문자열에 차이가 있어 나오는 경고문이다. 유닉스 시스템은 LF(Line Feed) / 윈도우는 CRLF(Carriage Return Line Feed) 방식을 사용해 줄 바뀜 문자시 변환 오류 날수 있다. 해결법 core.autocrlf 옵션을 통해 자동 변환되도록 설정해주면 된다. 윈도우의 경우 git config --global core.autocrlf true 리눅스나 맥의 경우 (input 옵션으로 단방향 설정함) git config --global core.autocrlf true input
-
nltk LookupError 해결법 in pythonError Handling 2020. 4. 16. 22:26
nltk 를 이용하고자 할때 아래와 같은 에러가 나타날떄가 있다. LookupError: ********************************************************************** Resource punkt not found. Please use the NLTK Downloader to obtain the resource: >>> import nltk >>> nltk.download('punkt') For more information see: https://www.nltk.org/data.html Attempted to load tokenizers/punkt/english.pickle Searched in: - 'C:\\Users\\carl/nltk_data' - '..
-
node error 해결법: connect ECONNREFUSED 127.0.0.1:3306Error Handling 2020. 4. 13. 22:57
mysql 을 연동시키기 위해 node 를 실행시키면 아래와 같은 에러가 뜨는 경우가 있다. ERROR: connect ECONNREFUSED 127.0.0.1:3306 위 에러는 mysql이 실행되지 않아 연결 안될 때 주로 발생한다. 따라서 mysql 을 제대로 설치하고 실행까지! 완료하였는지를 확인한다. MySql workbench 를 열고 접속후 Server Status 를 클릭한뒤 Test Connection 을 수행하여 접속 여부를 확인한다.
-
graphviz error 해결법: ExecutableNotFound: failed to execute ['dot', '-Tsvg'], make sure the Graphviz executables are on your systems' PATHError Handling 2020. 3. 17. 22:05
파이썬 graphviz 에러 import graphviz 를 호출 한뒤 시각화를 하려할때 나는 에러 ExecutableNotFound: failed to execute ['dot', '-Tsvg'], make sure the Graphviz executables are on your systems' PATH 해결법 아래 링크 들어가 https://graphviz.gitlab.io/_pages/Download/Download_windows.html 윈도우 환경변수설정에 들어간 뒤 graphviz-2.38.msi 다운 후 설치 사용자 환경 변수에 아래 경로 추가 C:\Program Files (x86)\Graphviz2.38\bin 시스템 환경변수에 아래 경로 추가 C:\Program Files (x86)\..
-
git bash error 해결법 : Superuser creation skipped due to not running in a TTYError Handling 2020. 3. 9. 21:58
깃 배쉬 에러 Git bash 에서 장고(django) 작업 도중 아래와 같은 오류가 발생했다. $ python manage.py createsuperuser Superuser creation skipped due to not running in a TTY TTY 환경 안에서 슈퍼유저를 생성할수 없다는 에러 해결법 Windows 콘솔과 통신이 가능하도록 winpty 명령어를 앞에 붙여서 사용하면 해결 $ winpty python manage.py createsuperuser
-
Django error 해결법 : TemplateSyntaxError at /'staticfiles' is not a registered tag library. Must be one ofError Handling 2020. 3. 9. 21:39
Django 에러 : TemplateSyntaxError at /'staticfiles' is not a registered tag library. Must be one of 해결법 장고 버젼이 3.0 버전에서는 더이상 아래 문법을 사용하지 않는다. {% load staticfiles %} 따라서 태그를 아래와 같이 바꿔준다. {% load static %}