본문 바로가기

분류 전체보기147

ToonCrafter 애니메이션 제작 - 1) Comfy ui 설치 (야매) Comfy UI 설치https://github.com/comfyanonymous/ComfyUI?tab=readme-ov-file#installing GitHub - comfyanonymous/ComfyUI: The most powerful and modular stable diffusion GUI, api and backend with a graph/nodes interfacThe most powerful and modular stable diffusion GUI, api and backend with a graph/nodes interface. - comfyanonymous/ComfyUIgithub.com위 순서대로 진행 예정 1. pytorch nightly 설치터미널 > 아래 명령어 실행pip3 i.. 2024. 6. 9.
appium 자동화 2024 - 10) iOS 자동화 연동 App Store > Xcode를 미리 설치해둔다. > npm i -g appium앱피움 설치 후, > appium driver install xcuitestiOS 자동화 드라이버인 xcuitest 설치 > cd /Users/(사용자명)/.appium/node_modules 위 경로에 driver 설치됨 확인 > appium driver list 해당 명령어로도 확인 가능 > cd /Users/jett.lee/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent해당 파일에 있는 webdriveragent 활용 예정 > 줄여서 WDA Android 는 이런 작업이 필요없지만, WDA 빌드 작업 필요WebDriverAge.. 2024. 5. 28.
실행중인 Docker 진입 + 시간대 변경 docker ps -adocker 컨테이너 조회  docker exec -it 3d2f0f46509e컨테이너 ID 복사 후 위 명령어 실행  해당 Container 로 진입 확인 ㄴ date : 현재 시간대 확인ㄴ ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime : 한국 시간대로 변경 2024. 5. 27.
git push / pull - ssh key 입력 스킵 ./~zshrc ssh-add ~/.ssh/id_rsa 를 추가해준뒤 source ./~zshrc 2024. 5. 27.
맥북 자동으로 날짜 설정 오류 해결 (시간이 너무 먼 과거로 설정되어 있습니다.) 맥북 시간이 이상하게 설정되어 위와 같이 인터넷 접근이 안되는 현상이 있었다.블로그 찾아서 아래와 같이 해결 터미널sudo rm /var/db/timed/com.apple.timed.plist ps -ef | grep timedsudo kill (ID) 2024. 5. 11.
구글 스프레드 시트 API 연동 (Python) + OS에 따라 Xpath 가져오기 https://velog.io/@junsugi/Google-Sheet-%EC%97%B0%EB%8F%99%ED%95%98%EA%B8%B0-feat.-Google-API Google Sheet 연동하기 (feat. Google API)구글 스프레드시트 연동하다 빡쳐서 쓰는 글velog.io위 블로그 참고하여 프로젝트 생성 + 구글 스프레드 시트 라이브러리 추가 + 서비스 계정 생성 + 키 생성 + 구글 스프레드 시트 공유까지  + 트러블 슈팅공유 드라이브 내 스프레드 시트를 만들어서 공유 > 서비스 계정 추가하는 단계가 불가했는데,개인 드라이브 계정에 구축함으로써 해결 worksheet()@pytest.fixture(scope="module")def worksheet(): # 구글 스프레드시트 연동 .. 2024. 5. 8.
구글 스프레드 시트 컬럼 내 중복 입력 표시 or 불가하도록 설정 구글 스프레드 시트 컬럼 내 중복 입력 시 표시 설정 ㄴ 작업하려는 컬럼 선택 > 서식 > 조건부 서식 ㄴ 위와 같이 입력 (C:C, C1 은 해당하는 컬럼값 입력) ㄴ 열 내 중복되는 값이 있는 경우 위와 같이 표시된다. 구글 스프레드 시트 컬럼 내 중복 입력 불가 하도록 설정 ㄴ 작업하려는 컬럼 선택 > 데이터 > 데이터 확인 ㄴ 위와 같이 입력 (C:C, C1 은 해당하는 컬럼값 입력) ㄴ 해당 열에 있는 값 입력 시 얼럿 노출되며 입력 불가 2024. 4. 9.
Jenkins 내부 IP에서 접근 안 될때 https://pikachu987.tistory.com/60 맥에서 Jenkins 설정하기(포트, IP허용) 2021.06.03 - [ETC] - 외부에서 token으로 젠킨스 빌드하기 외부에서 token으로 젠킨스 빌드하기 2021.06.02 - [ETC] - 맥에서 Jenkins 설정하기 맥에서 Jenkins 설정하기 https://www.jenkins.io/download/ Jenkins download and de pikachu987.tistory.com cd /opt/homebrew/opt/jenkins vi homebrew.mxcl.jenkins.plist homebrew.mxcl.jenkins.plist 수정 --httpListenAddress=0.0.0.0 위와 같이 설정 후 저장 ( :w.. 2024. 4. 5.
appium 자동화 2024 - 9) git - Jenkins 연동 Jenkins 기본 설정 후 + New Item ㄴ Freestyle 로 ㄴ Git Repository URL에 git 주소를 넣어주면 되는데, 위와 같은 에러가 노출되었다. stderr: remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied * 트러블 슈팅 히스토리... 2024. 4. 4.
appium 자동화 2024 - 8) PC web + Mobile 동시 자동화 setting.py import pytest from appium import webdriver as appium_webdriver from appium.options.android import UiAutomator2Options from selenium import webdriver as selenium_webdriver from selenium.webdriver import Chrome # appium 세팅 @pytest.fixture(scope="module") def driver_m(): capabilities = dict( platformName='Android', automationName='uiautomator2' ) appium_server_url = 'http://localhost:472.. 2024. 3. 29.