[ubuntu] 우분투 업데이트 오류 : /var/lib/dpkg/lock-frontend 에러 해결

[ubuntu] 우분투 업데이트 오류 : /var/lib/dpkg/lock-frontend 에러 해결

E: Could not get lock /var/lib/dpkg/lock-frontend. It is held by process 2813 (apt-get)N: Be aware that removing the lock file is not a solution and may break your system.E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it? 혹은 Waiting for cache lock: Could not get lock /var/lib/dpkg/lock-frontend 오류를 해결해보겠습니다. 먼저, … Read more

파이썬 ModuleNotFoundError: No module named ‘openpyxl’

파이썬 ModuleNotFoundError: No module named ‘openpyxl’ 오류는 python 엑셀 라이브러리가 제대로 설치되지 않아 발생하는 오류입니다. 터미널을 통해 간단하게 코드를 입력함으로써 빠르게 해결이 가능합니다. 자동으로 openpyxl 엑셀 라이브러리가 설치됩니다. 파이썬 ModuleNotFoundError: No module named ‘openpyxl’ 오류도 간단하게 해결해 보았습니다.

파이썬 ModuleNotFoundError: No module named ‘pandas’ 10초 해결

파이썬 ModuleNotFoundError: No module named ‘pandas’ 10초 해결

파이썬 ModuleNotFoundError: No module named ‘pandas’ 오류 아래 코드를 터미널에 붙여넣습니다. pip가 정상 작동한다는 가정 하에 실행하는 코드입니다. pip 설치에서부터 문제가 있다면 이 포스팅을 먼저 참고하세요. 자동으로 설치되며, 간단하게 파이썬 ModuleNotFoundError: No module named ‘pandas’ 오류를 10초만에 해결할 수 있습니다.

파이썬 ModuleNotFoundError: No module named ‘requests’ (mac,windows)

파이썬 ModuleNotFoundError: No module named ‘requests’ (mac,windows)

Contents1 ModuleNotFoundError: No module named ‘requests’1.1 requests install1.2 오류 1. sudo: pip: command not found1.3 오류 2. The operation couldn’t be completed. Unable to locate a Java Runtime. Please visit http://www.java.com for information on installing Java.1.4 오류 3. The operation couldn’t be completed. Unable to locate a Java Runtime that supports apt. Please visit http://www.java.com … Read more

AWS EC2 apt-get Connecting 0% 오류 해결 방법 – apt-get not working

AWS EC2 apt-get Connecting 0% 오류 해결 방법 – apt-get not working

AWS EC2 apt-get Connecting 0% 오류 해결 방법 AWS EC2에 ami를 생성하고, 해당 문장을 사용하여 ec2 인스턴스 내에서 apt-get 명령을 사용하려고 할 때, 0%에서 로딩이 계속되는 오류를 해결합니다. 0% [Connecting to ap-northeast-2.ec2.archive.ubuntu.com 이 노출된 이후 전혀 진전되지 않습니다. ubuntu 20.04 등 우분투 서버가 아닐 경우 리눅스 체제일 경우 yum을 사용하세요. apt-get 대신 yum을 사용하는 체제입니다. … Read more

워드프레스 이전 후 테마,플러그인 설치 실패 해결방법 – 업로드된 파일이 wp-content/uploads/로 옮겨질 수 없습니다 해결

워드프레스 이전 후 테마,플러그인 설치 실패 해결방법 블루호스트 워드프레스를 사용하다 지나치게 느린 속도에 vpc호스팅으로 변경하며 워드프레스를 이전했습니다. 마이그레이션 플러그인을 사용하지 않고 미리 wp-contents 내 업로드 이미지 백업, 워드프레스 내보내기 기능으로 글과 이미지만 살리는 방식으로 진행했습니다. 이전 후 gp premium 플러그인을 설치하다 아래와 같은 오류를 마주했습니다. 업로드된 파일이 wp-content/uploads/2021/06으로 옮겨질 수 없습니다. 용량이 넉넉한 서버호스팅이었기에 용량 … Read more

워드프레스 경고 선택적 모듈 imagick을(를) 설치하지 않았거나, 비활성화 했습니다. HP GD, MBstring, Imagick Extension missing 해결 – PHP 확장기능 직접 설치

워드프레스 경고 선택적 모듈 imagick을(를) 설치하지 않았거나, 비활성화 했습니다. HP GD, MBstring, Imagick Extension missing 해결 – PHP 확장기능 직접 설치

PHP GD Extension missing, PHP MBstring Extension missing은 당연히 php에 GD Extension, MBstring Extension이 설치되지 않은 것입니다. 주로 워드프레스를 vps에 직접 설치한 경우 이러한 알림을 받을 수 있습니다. 선택적 모듈/필요한 모듈 mbstring, imagick, gd을(를) 설치하지 않았거나 비활성화 했습니다. 해당 문제를 해결하는 방법은 해당 모듈들을 설치해 주면 간단히 해결됩니다. ubuntu 20.04, nginx, php 7.4버전 기준으로 작성하겠습니다. … Read more

sudo: yum: command not found 해결 – ubuntu nginx에 yum 설치

sudo: yum: command not found 해결 – ubuntu nginx에 yum 설치

sudo: yum: command not found 오류 해결방법입니다. 해당 문구는 ubuntu nginx에 yum 설치가 되어있지 않기 때문에 생긴 오류입니다. 원래는 yum이 아니라 apt-get을 사용하면 되지만.. yum을 쓰는 명령 대신 apt-get으로 대체할 수 있으니 yum을 설치하려고 굳이 노력하지 않아도 됩니다.. 그래도 방법은 있었습니다. 작업환경에 yum을 설치해줍니다. sudo apt-get install yum 아래와 같은 결과가 반환되며 정상적으로 설치되지 않을 … Read more

css float 속성 사용하기(안될 때 범위 지정, 오류 해결 방법 2가지)

css float 속성 사용하기(안될 때 범위 지정, 오류 해결 방법 2가지)

css 속성 중, 블럭 요소들로 가로형 컨텐츠 레이아웃을 만들 때 많이 사용하는 속성인 float의 정의와 사용 방법에 대한 포스팅입니다. Contents1 css float 속성이란?2 css float 속성 적용 방법2.1 1. 부모 태그 지정2.2 2. float 속성 css 파일에 추가2.3 3. 오류 확인3 css float 속성 범위 설정이 제대로 안될 때(float 오류 해결)3.1 clear 속성 부여 방법3.1.1 … Read more