728x90

Error 5

[Python]numpy-1.14.2/setup.py:369 Cython

/tmp/easy_install-ffy1ao7u/numpy-1.14.2/setup.py:369: UserWarning: Unrecognized setuptools command, proceeding with generating Cython sources and expanding templates 패키지 설치를 할때 위와 같은 오류가 뜰때가 있다. ubuntu 경우에는 아래 명령어를 사용해서 업데이틀 해주면 된다고 한다. apt-get -yqqf install python-setuptools && easy_install pip && pip install --upgrade pip setuptools cent-os 경우(본인)은 아래만 업데이트 해주니 해결되었다. easy_install pip && pip i..

[Jquery] SCRIPT438: 개체가 'querySelectorAll' 속성이나 메서드를 지원하지 않습니다.

IE7환경에서 ckeditor 에디터를 설치해서 사용하다보니 링크를 연결하는 부분에서 에러가 발생했다. querySelectorAll 함수와 querySelector 함수는 ie7환경에서 스크립트 오류가 발생할 때가 있는데 이럴때 해결 방법을 올려본다. $(function() { if (!document.querySelectorAll) { document.querySelectorAll = function (selectors) { var style = document.createElement('style'), elements = [], element; document.documentElement.firstChild.appendChild(style); document._qsa = []; style.style..

[CKeditor]setCustomData 에러

영어 : TypeError: Cannot read property 'setCustomData' 한글 : SCRIPT5007: 정의되지 않음 또는 null 참조인 'setCustomData' 속성을 가져올 수 없습니다. 위의 에러에 대해서 해결해 보겠다. Fckeditor-> ckeditor로 업그레이드 하면서 이미지 업로드 기능까지 모두 끝났다고 생각했는데이미지 업로드때는 불러오던 속성을 가져오지 못하는 상황이 었다. 그래서 이게 js에서 추가로 기능 구현을 해주거나 해야하는 건줄 알았는데.....기능 오류.... ㅠㅠ 이걸로 며칠을 헤맸는데 ㅠ 나처럼 헤매는 사람 없도록 이렇게 올려본다(이상하게 한글 해결방법은 없더라.. 나만 만난거냐...) 그래서 영어로나 한글로 ckeditor cannot load..

[Python] SyntaxError: Non-ASCII character '\xeb' in file test.py on line 5, but no encoding declared;

Python 에러 SyntaxError: Non-ASCII character '\xeb' in file test.py on line 5, but no encoding declared; # -*- coding: cp949 -*-from bs4 import BeautifulSoup # -*- coding: utf-8 -*-from bs4 import BeautifulSoup 한글은 코딩할때 unicode로 저장하는게 좋고 hi = u'안녕하세요'type 함수를 통해 현재 내가 변수에 저장한 문자열이 str(아스키코드)인지 unicode인지 확인이 가능하다. unicode로 넘어온 데이터를 변수에서 한글깨짐때문에 cp949나 utf-8로 인코딩해서 변수에 넣어 줬다면엑셀에 한글 데이터를 집어넣을려면 unico..

728x90