본문 바로가기

분류 전체보기621

[Ubuntu Error] E: Sub-process /usr/bin/dpkg returned an error code (1) 다음과 같은 에러는 의존성 문제가 발생한 경우로 사용자가 패키지 설치나 삭제를 잘못한 경우에 생긴다. sudo apt-get update -y; sudo apt-get dist-upgrade -y 위의 명령어로 해결이 안되면 아래 명령어를 사용해본다. sudo apt-get --yes autoremove --purge (오류명 입력) ## sudo apt-get --yes autoremove --purge docker-ce 그래도 안되면 아래 파일을 삭제해준다. sudo rm -rf /var/lib/dpkg/lock 2022. 2. 14.
프로그래머스 네트워크 연결 끊김 문제 Windows, Linux, Chrome 에서는 Ctrl + Shift + n 맥에서는 command + shift + n 단축키를 눌러 개인정보보호 페이지에서 하면 된다. 크롬환경에서 해야하는데 나는 사파리에서 하다보니 연결이 계속 끊겼다.. HTML 삽입 미리보기할 수 없는 소스 "이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다." 2022. 2. 10.
티스토리 광고차단 프로그램 비활성화 요청 블로그 방문시 adblock 을 사용하면 종료 요청을 하는 스크립트를 추가하려고 한다. 아래 사이트에서 스크립트를 생성해준다. https://blockadblock.com/configure.php Configuration Options | BlockAdBlock - Stop Losing Ad Revenue Unobtrusive BlockAdblock branding is included in a lower corner of the block screen. If you are concerned about file-sizes and site-speed, you may opt to remove the branding image. Removing the branding image will reduce the s.. 2022. 2. 4.
[Linux] Docker로 그라파나 Grafana 설치하기 도커 설치 명령어이다. 기본 명령어로 환경설정은 하지 않고 시작했다. docker run -d -p 3000:3000 grafana/grafana-enterprise 도커를 띄우고 url 에 접속하면 로그인창이 나온다. 초기 정보는 admin/admin 이고 바로 비밀번호 변경할 수 있게 나온다. 운영체제에 따른 설치 방법과 자세한 내용은 아래 사이트를 참고하면 된다. https://grafana.com/docs/grafana/latest/installation/ 2022. 2. 3.
[python] 배열 뒤에서부터 출력 [::] 뒤에서 3개만 출력 a = "abc1234가나다" print(a[-3:]) # 가나다 뒤에 3개 빼고 출력 a = "abc1234가나다" print(a[:-3]) # abc1234 뒤에서부터 출력 a = "abc1234가나다" print(a[::-1]) # 다나가4321cba 2022. 2. 2.
[python error] 'euc_kr' codec can't decode byte 0xbf in position 2: illegal multibyte sequence python 에서 csv 를 열 때 encoding 에서 생기는 오류로 utf-8 을 사용해준다. 'cp949' codec can't decode byte 0xbf in position 2: illegal multibyte sequence 'euc_kr' codec can't decode byte 0xbf in position 2: illegal multibyte sequence df.to_csv("/home/test.csv", encoding='utf-8') 2022. 2. 1.