본문 바로가기

vscode5

[ vscode ] VScode 환경설정 [ 권장 설정 ] [ setting ] terminal>Integrated: Cwd 기본 터미널 경로 변경 [ launch.json ] [ settings.json ] 2023. 4. 23.
vscode 단축키 출처 : https://demun.github.io/vscode-tutorial/shortcuts/ 단축키 - Visual Studio Code tutorial 단축키 파일 > 기본 설정 > 바로가기 키 에서 현재 활성화된 키보드 단축키를 볼 수 있습니다 . 기본 편집 키 명령 명령 ID ctrl+X 행 삭제 (빈 선택) editor.action.clipboardCutAction ctrl+C 행 복사 (빈 선택) e demun.github.io https://www.biew.co.kr/entry/Visual-Studio-CodeVS-Code-%EC%9C%A0%EC%9A%A9%ED%95%9C-%EB%8B%A8%EC%B6%95%ED%82%A4-%EC%82%AC%EC%9A%A9-%EB%B0%A9%EB%B2%9.. 2023. 4. 10.
UML 다이어그램 vscode 개발 Tool 조합 - Visual Studio Code - 확장팩 : PlantUML Extension GraphViz 1. PlantUML Extension 설치 하신후에는 기본으로 Sequence Diagram 을 그리실수 있습니다. 2. GraphViz - Class Diagram 을 그리기 위해 환경변수 설정 : GRAPHVIZ_DOT 설정값 : GraphViz 폴더안의 bin 폴더에 있는 dot.exe 파일의 전체 경로 ### UML 관련 참조 자료 http://plantuml.com/ko/guide PlantUML Language Reference Guide plantuml.com 참조 사이트 : https://www.clien.net/service/board/lecture/13.. 2023. 3. 24.
pyqt5-tools 설치 오류 1. whl파일 Download ( pyqt5_tools-5.15.4.3.2-py3-none-any.whl ) 2. whl파일 unpack 및 repack 1) $> wheel unpack 2) 원하는 파일 수정 3) delete RECORDfile 4) $> wheel pack 3. pip install #### 파일 수정 사항 해당파일 : pyqt5_plugins-5.15.4.2.2.dist-info/METADATA 수정 내용 : Requires-Dist: pyqt5 (==5.15.4) -> Requires-Dist: pyqt5 2023. 3. 11.
파일 실행 경로 변경(디버그) -> 현재 파일 경로 1. launch.json 생성 2. 다음 추가 { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Python: Current File", "type": "python", "request": "launch", "program": "${file}", "console": "integratedTerminal", "justMyCode".. 2023. 3. 10.