본문 바로가기
  • "하나씩 기록하다보면 누군가에게 도움이 되지 않을까"
728x90

문제발생 및 해결9

[Python] [에러 및 해결] SyntaxError: Non-UTF-8 code starting with '\xed' in file <FilePath> but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details 1. 문제 발생 Pycharm으로 파이썬 소스코드 작업 중 갑자기 SyntaxError 표출 한글 때문에 인코딩 문제가 발생한 듯 2. 문제 해결 소스코드 맨 상단에 # -*- coding: utf-8 -*- 삽입 # -*- coding: utf-8 -*- from urllib.parse import quote_plus from bs4 import BeautifulSoup from selenium import webdriver import time .... 3. 참고자료 및 문헌 http://python.org/dev/peps/pep-0263/ 4. 맺음말 소스코드 실행 됌. 더 좋은 방법이 있거나, 문제발생의 소지가 있을 경우 안내해주시면 감사하겠습니다. 2021. 6. 4.
[안드로이드] More than one file was found with OS independent path ‘beans.xml’ 에러 1. 서론 안드로이드에서 앱 만들고 빌드하려고 하는데 More than one file was found with OS independent path ‘beans.xml’ 에러 발생 구글에서 에러 검색 결과 나온 블로그(eodevelop.tistory.com/46)를 참고하여 문제 해결 2. 본문 build.gradle (module) 에서 android 밑에 PackagingOptions 로 빌드할때 빼고 진행 3. 결론 정상적으로 빌드 완료 2021. 2. 24.
[안드로이드] 라이브러리 참고 시 Jetty 없다고 할때 (NoClassDefFoundError) Jetty 관련 없다고 에러 날때 Project Structure - Dependencies - Add Library에서 org.eclipse.jetty치면 다양한거 나옴 여기서 에러난 util거 다운로드받음 2021. 2. 23.
[안드로이드] 안드로이드에서 servlet관련 NoClassDefFoundError Rejecting re-init on previously-failed class java.lang.Class: java.lang.NoClassDefFoundError: Failed resolution of: Ljavax/servle 검색해서 해결 매니피스트에 삽입 출처 : thisisspear.tistory.com/42 안드로이드 오류 : java.lang.NoClassDefFoundError: Failed resolution of: Lorg/apache/http/impl/cookie/DateUtils; 안드로이드 앱 타겟을 28로 업데이트하다보니 해당 에러가 발생했다. java.lang.NoClassDefFoundError: Failed resolution of: Lorg/apache/http/impl.. 2021. 2. 23.
[안드로이드] Gradle에 Maven Repository 추가 1. 서론 안드로이드에서 Upnp Control-Point만들어보려고 Java 라이브러리인 cling 을사용하려고 하는데, 메뉴얼에 Maven 방법밖에 없어, Gradle에서 사용해보려고 Repository 연동하려고 했음 2. 본문 build.gradle에 다음과 같이 설정하여 해결 allprojects { repositories { google() jcenter() maven{ url "http://4thline.org/m2" } } } ** 메뉴얼에 적혀있는 maven 설치 ** ** build.gradle(프로젝트 - app) - defendencies ** 3. 결론 일단 Gradle에 연결은 되었음. 확인해서 라이브러리 연동 진행 4. 맺음말 다양한 의견있으시면 알려주십시오. 2021. 2. 23.
[가상화] Docker 만든이미지 hub에 업로드 안될 때 참고 사이트 nirsa.tistory.com/53 [Docker CE] 도커 이미지 업로드 권한 에러 (denied: requested access to the resource is denied) 이미지를 docker hub 에 업로드할 때 "denied: requested access to the resource is denied" 에러가 발생할 수 있습니다. 1. docker hub에 로그인이 되지 않을 경우 2. user name과 docker hub 에 로그인된 ID가.. nirsa.tistory.com github.com/sangyeol-kim/ausg-docker-seminar/issues/10 docker push 시 denied: requested access to the resource .. 2021. 1. 29.
[가상화] Docker 컨테이너에 추가 포트 오픈 변경사항이 있다면 docker commit을 사용해서 변경된 내용 적용 그다음에 p옵션을 줘서 재실행 1. docker stop running_container 2. docker commint running_container new_name_image 3. docker run -p ??:?? --name new_name_image 참고 ongamedev.tistory.com/entry/%EC%8B%A4%ED%96%89%EC%A4%91%EC%9D%B8-%EB%8F%84%EC%BB%A4-%EC%BB%A8%ED%85%8C%EC%9D%B4%EB%84%88%EC%97%90-%EC%B6%94%EA%B0%80-%ED%8F%AC%ED%8A%B8-%EC%98%A4%ED%94%88%ED%95%98%EA%B8%B0 실행중인.. 2021. 1. 29.
[데비안] 라즈베리파이 파일 매니저 자동 꺼짐 보호되어 있는 글 입니다. 2020. 5. 11.
[MFC] Thread 써서 ucrtbase.dll 에러 났을 때 대처 보호되어 있는 글 입니다. 2019. 7. 16.
728x90