본문 바로가기

전체 글

MS office 0xC004F074 에러 ms office 정품 인증법: https://addplus.tistory.com/entry/Microsoft-Office-MS-%EC%98%A4%ED%94%BC%EC%8A%A4-2021-%EB%8B%A4%EC%9A%B4%EB%A1%9C%EB%93%9C-%EC%A0%95%ED%92%88%EC%9D%B8%EC%A6%9D-%EC%99%84%EB%B2%BD-%EC%A0%95%EB%A6%AC#google_vignette [Microsoft Office] MS 오피스 2021 다운로드 & 정품인증 완벽 정리 [Microsoft Office] 마이크로소프트 오피스 2021 다운로드 & 정품인증 완벽 정리 정확하게는 Office 2021 Professional Plus 버전이니 참고하시기 바랍니다. 혹시라도 MS 오.. 더보기
docker volumn 삭제시 docker volume rm testError response from daemon 에러 [root@localhost ~]# docker volume rm testError response from daemon: remove test: volume is in use - [9ad76bd2cd26dacc8f278421678dd0aa8bce8eeeca8942a7a1229e36deaca242, 127b72d0c51feba57c99fe4763277db8109d439c9f9035697bf1fb686370ec2e] 도커 volume을 삭제 할경우 위와 같은 에러가 종종 발생한다. 1. volume prune을 먼저 한다. docker volume prune WARNING! This will remove anonymous local volumes not used by at least one containe.. 더보기
docker systemctl enable --now docker 할 경우 Failed to execute operation: No such file or directory (centos7) 에러메세지 Failed to execute operation: No such file or directory 는 일반적으로 지정된 파일 또는 디렉터리를 찾을 수 없을 때 발생합니다. CentOS 7에서 "systemctl enable --now docker" 명령의 경우 Docker 서비스 또는 관련 시스템 단위 파일이 없음을 나타냅니다. 이 문제를 해결하려면 CentOS 7 시스템에 Docker를 다시 설치해 봐야 합니다. 1. Docker 제거(선택 사항): Docker가 이미 설치되어 있는 경우 다음 명령을 실행하여 제거할 수 있습니다. sudo yum remove docker docker-client docker-client-latest docker-common docker-latest docke.. 더보기
Your server is running PHP version 5.4.16 but WordPress 5.8.6 requires at least 5.6.20. (CentOS 7) php 서버에서 WordPress를 실행 할 때 위와 같은 업그레이드 하라는 에러가 뜬다. 이럴 때 php 버전을 5.6.20 이상으로 업그레이드를 해줘야 한다. php -v 명령어로 버전을 체크하니 5.4.16 이 나와서 워드프레스랑 충돌이 됨 (업그레이드 하라고 나옴) yum list installed | grep php PHP 관련된 파일들을 list 해봄 위 파일들을 삭제 하고 php 다시 설치 yum remove php.x86_64 php56-bcmath.x86_64 php56-cli.x86_64 php56-common.x86_64 php56-fedora-autoloader.noarch php56-gd.x86_64 php56-mbstring.x86_64 php56-mysqlnd.x86_64 ph.. 더보기
AttributeError: 'WebDriver' object has no attribute 'find_element_by_name' 기존: from selenium import webdriver 변경: from selenium.webdriver.common.by import By 기존 문법 신규 문법 find_element_by_id('id명') find_element(By.ID, 'id명') find_element_by_xpath('경로') find_element(By.XPATH, '경로') find_element_by_name('이름') find_element(By.NAME, '이름') find_element_by_tag_name('tag 이름') find_element(By.TAG_NAME, '태그 이름') find_element_by_class_name('클래스 이름') find_element(By.CLASS_NAME, '클래.. 더보기
m1 -bash: pip: command not found 1.pip 확인 bagchan-igdeMacBook-Pro:~ piaocanyi$ pip -bash: pip: command not found 2. Ensurepip 방법을 사용하여 Python 3용 Mac에 PIP 설치 bagchan-igdeMacBook-Pro:~ piaocanyi$ python3 -m ensurepip Looking in links: /var/folders/4p/w0j2shl902s8j591d88qmwwm0000gn/T/tmpgh_ymmud Requirement already satisfied: setuptools in /opt/homebrew/lib/python3.11/site-packages (65.6.3) Requirement already satisfied: pip in /o.. 더보기
m1 mac bash: python: command not found 해결 터미널 해당 폴더에서 python을 실행 할려고 할 경우 bash: python: command not found 발생 해결법1: alias 등록 bagchan-igdeMacBook-Pro:~ piaocanyi$ echo alias python='python3' >> ~/.bashrc bagchan-igdeMacBook-Pro:~ piaocanyi$ source ~/.bashrc bagchan-igdeMacBook-Pro:~ piaocanyi$ python -V Python 3.11.2 python 함수 적용성공! 해결법2: 심볼릭링크 생성 참고: https://askubuntu.com/questions/1144446/python-installed-in-ubuntu-but-python-command-no.. 더보기
git branch commit 되돌리기 git reset --soft HEAD^ commit을 취소하고 해당 파일들은 staged 상태로 워킹 디렉터리에 보존 즉 add 한 상태 staged 상태 git reset ---mixed HEAD^ commit 을 취소하고 해당 파일들 unstaged 상태로 워킹 디렉터리에 보존 즉 add 하기 전 상태, unstaged 상태 git reset HEAD~2 마지막 2개 commit 취소 https://ikcoo.tistory.com/47 더보기