분류 전체보기13 옵시디언 + Git 연동 기록 - 정리 필요 git init최초 아무 파일 add 후 commit.git branchgit branch 브랜치명git swatch 브랜치명 git remote add "별명" "원격저장소 주소"git config --global core.autocrlf true원격저장소를 계정이름@github으로 하면 멀티계정으로 접속가능 git add .git commit -m "massage"gitt push 원격저장소 브랜치명git push --set-upstream 원격저장소 브랜치명 git please make sure you have the correct access rights 오류 발생시git remote set-url origin https://계정이름@github.com/~~~로 해결. 2024. 5. 29. 파이썬 셀레니움 업데이트 관련 오류 크롬 업데이트 이후 크롬 드라이버 버전이 업데이트가 안되면 오류가 발생. 크롬 드라이버의 최신 버전을 가지고 다운로드하도록 코드를 수정해야 함. release = "https://chromedriver.storage.googleapis.com/LATEST_RELEASE" version = requests.get(release).text service = Service(executable_path=ChromeDriverManager(version=version).install()) 아래 링크를 참조. https://cokes.tistory.com/190 2023. 8. 1. PyInstaller pyinstaller -w -F qtextbrowser_advanced.py VSCode에서 만들 경우 나중에 실행할 때 에러가 발생할 수 있다. 그냥 파워셀에서 생성하자. AttributeError: 'NoneType' object has no attribute 'write' 에러 처리 https://eomcheon.tistory.com/238 파이썬 pyinstaller 실행 후 'NoneType' object has no attribute 'write' 요즘 파이썬으로 이것저것 개발을 하고 있다. pyqt5를 통해 ui를 만들고, 실시간으로 로그를 출력하는 기능을 만들었다. 파이썬으로 디버깅시에는 문제없이 동작하지만 아래와같은 오류가 발생했 eomcheon.tistory.com https://sta.. 2023. 5. 2. Git 포터블 + VSCode 연동 Git 포터블 Git down VSCode에서 Git 포터블 패스 설정 설정에서 Git: path 검색 후 패스 입력 ex - F:\Dropbox\git\bin\git.exe 2023. 4. 28. 이전 1 2 3 4 다음