목록분류 전체보기 (228)
main
에러 "dataframe_image" 패키지를 사용하는 프로젝트를 PyInstaller 로 빌드하여, exe 파일을 실행시키면 "nbconvert" 모듈의 Import Error 발생 ImportError: cannot import name 'MarkdownExporter' from 'nbconvert' 해결 방법 1. nbconvert를 6.4.3 버전으로 다운그레이드 pip install nbconvert==6.4.3 2. dataframe_image 디렉토리를 찾을 수 없다는 에러 발생 FileNotFoundError: [Errno 2] No such file or directory: 'D:\\code\\python\\...\\dist\\...\\dataframe_image\\static\\styl..
cmd 관리자 권한으로 실행 reg.exe add “HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32” /f /ve taskkill /f /im explorer.exe explorer

마이크로소프트 사에서 만든 파워토이를 설치하고 윈도우 창의 위치를 고정해보았다. Github 주소 https://github.com/microsoft/PowerToys GitHub - microsoft/PowerToys: Windows system utilities to maximize productivity Windows system utilities to maximize productivity. Contribute to microsoft/PowerToys development by creating an account on GitHub. github.com 다운로드 1. Github 페이지에서 Installing and running Microsoft PowerToys 섹션으로 이동하여 설치 파일을 다..
타이핑웍스 윈도우창을 작게하면, phone으로 인식되어 엔터키가 줄바꿈으로 인식됨. twsAgent.prototype.change = function () { this.phone = false; this.tablet = false; this.pc = true; switch (!0) { case this.phone: twsOptIpt("phone"), tws.langBox.display(tws.lang, "phone"), tws.timeBox.display(tws.ttSelect, "phone"), tws.timeBox.timesDP(tws.times, "phone"), tws.timeBox.timerDP(tws.timer, "phone"), tws.stnBox.btnDP(tws.short, "phone"..

wifi에 연결된 Raspberry Pi의 고정 IP를 설정한다. 1. /etc/netplan 디렉토리로 이동하여, 설정 파일을 확인한다. 파일 이름은 상이할 수 있다. cd /etc/netplan ls 2. 해당 파일을 vim 편집기로 연다. vi 50-cloud-init.yaml 기존의 yaml 파일은 아래와 같다. network: version: 2 wifis: renderer: networkd wlan0: access-points: WIFI이름: password: WIFI비밀번호 dhcp4: true optional: true 3. [dhcp4]를 수정하고, [addresses]/[gateway4]/[nameservers] 항목을 추가한다. 변경 후 yaml 파일은 아래와 같다. network: ..