VSCode

    [Error fix] Solved "The kernel failed to start due to the missing module 'IPython'. Consider installing this module. Click here for more info." (feat. VSCode Jupyter)

    # Problem When using a Jupyter notebook file in Visual Studio code with the Jupyter extension I receive the error: The kernel failed to start due to the missing module 'IPython'. Consider installing this module. Click here for more info. # Solution First uninstall all jupyter related modules: (from: https://stackoverflow.com/a/52912244/1516331) python3 -m pip uninstall -y jupyter jupyter_core ju..

    [IDE] VSCode C++ 디버깅 환경 세팅(task.json, launch.json): GCC on Linux (feat. 모든 중단점에서 멈추도록)

    💡 본 문서는 Visual Studio Code를 활용한 C++ 디버깅 환경 세팅 방법에 대해 소개합니다. 운영체제 별로 지원되는 컴파일러에 차이가 있어 운영체제별로 일부 상이할 수 있으니 본인의 운영체제를 확인하고 그에 맞춰서 진행하시기 바랍니다. 미리 알아야 할 점 (주의사항) VSCode에서 디버깅시 프로젝트의 상위에 있는 .vscode/폴더 내에 task.json과 launch.json을 아래와 유사하게 구성합니다. VScode의 디버깅을 실행하면 launch.json이 실행되는데, 이때 preLaunchTask 라벨이 있다면 task.json에서 label이 동일한 것을 찾고 task.json 작업을 실행한 후 launch.json이 실행합니다. 따라서 task.json의 "label"과 lau..

    [IDE] VSCode 유용한 Extension 정리

    본 문서는 VSCode에서 개발 할 때, 유용한 Plugin에 대해 설명합니다. 해당 Extension들은 필수 설치는 아니며, 기호에 따라 설치하도록 합니다. 1) 유용한 Extension 요약 목적 비고 Remote 서버에서의 작업을 원활하게 해줌 Remote-Containers, Docker 도커 컨테이너에서의 작업을 원활하게 해줌 Tabout Tab키를 눌러서 Quotation이나 Parenthesis 밖으로 Bracket Pair Colorizer 2 괄호 pair에 맞춰서 색 변화 Todo Tree TODO 계열 태그들을 하이라이팅 + 찾기 쉽도록 관리 Highlight Trailing White Spaces 의미 없이 사용된 공백의 스페이스 문자 강조 ybaumes.highlight-trai..