
최신 마이너 버전 다운로드 후 압축해제하여 lib폴더에 있는 라이브러리 파일을 기존 버전의 lib폴더에 복사하면 끝!! 재기동하기전에도 version.sh실행하면 버전이 변경된것 확인 가능. 원복해야할지도 모르니 lib폴더를 백업해두자!! https://endoflife.date/tomcat Apache Tomcat Check End of Life, Support Schedule, and release timelines for AlmaLinux OS, Alpine Linux, Amazon Corretto, Amazon Linux, Android OS, Angular, Ansible-core, Ansible, antiX Linux, Apache Airflow, Apache Camel, Apache Cass..

아래 내용을 추가하여 설치! https://github.com/Mikubill/sd-webui-controlnet 컨트롤넷용 모델 엔진 다운로드 모델 엔진 설치 경로 [설치경로]\stable-diffusion-webui\extensions\sd-webui-controlnet\models https://huggingface.co/webui/ControlNet-modules-safetensors/tree/main webui/ControlNet-modules-safetensors at main huggingface.co webui 재시작 후 하단에 컨트롤넷 메뉴를 클릭하여 아래와 같이 추가된것 확인가능. https://github.com/AUTOMATIC1111/stable-diffusion-webui/iss..

구동환경 : RTX3000시리즈 위 다운로드 파일 다운후 파워쉘을 관리자 권한으로 아래 명령어 실행 Set-ExecutionPolicy Bypass 다운로드한 파일을 압축해제 후 해당 경로에서 아래와 같이 실행 # stable-diffusion-webui폴더에서 powerShell열고 cd ./venv/Scripts/ ./Activate.ps1 pip install --upgrade fastapi==0.90.0 webui실행 webui-user.bat 실행 모델 엔진(체크포인트) 및 로라 다운받는 사이트 https://civitai.com/ Civitai | Stable Diffusion models, embeddings, hypernetworks and more Civitai is a platform ..

오류확인 centos8초기버전에서 yum(또는 dnf) update할려고할시 업데이트 에러가 발생 Error: Failed to download metadata for repo 'appstream': Cannot prepare internal mirrorlist: No URLs in mirrorlist 오류원인 저장소 경로가 잘못되었거나 할경우 발생할수 있던건데. 현재는(작성일 기준 : 2023-01-18) EOL로 인한 업데이트 에러. 해결방법 centos초기 버전이라 일단 아래와 같이 repo파일 수정. 기존 mirrorlist는 주석처리. https://vault.centos.org/8.5.2111/AppStream/x86_64/os/ https://vault.centos.org/8.5.2111/B..
![[파이썬]텔레그램 푸시(2023버전)](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FbVa7Ap%2FbtrWrJBeAov%2FAAAAAAAAAAAAAAAAAAAAAIbXVAtSVXJ0WhuRxsmw_0h_RdkxYacRLUELoHnzh5-I%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3Dtthsq2dDrJw%252Frxwkihv9eAFh9uQ%253D)
파이참을 작성해서 텔레그램 푸시를 테스트해볼려고하니 기존에 사용했던 방식은 먹히지 않아 구글링해본 결과 최근 텔레그램봇이 v20으로 업데이트 되면서 문제가 발생 해서 아래와 같이 하면 동작. import telegram import asyncio chat_token = "#############################" bot = telegram.Bot(token = chat_token) text = '안녕하세요' #### 리눅스에서는 아래 코드 삭제 또는 주석처리해야함 #### asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) asyncio.run(bot.sendMessage(chat_id = "#############..