vscode(7)
-
[VSCode] Python Interactive window 사용하여 코딩하기
가끔 jupyter를 사용하다 보면 버벅거릴 떄가 있고, 메모리를 많이 차지하는 경우가 있습니다. 이게 실제로 효율적인지는 모르겠지만, 우연히 발견하게 된 interactive view가 도움이 될 수도 있을 것 같아 공유드립니다. 물론 vscode 주피터에서 작업을 하게 되면, 기존에 관습대로 할 수 있어서 좋지만, 실제 학습 코드 개발이나 테스트하는 입장에서는 py에서 작업을 하는 것이 더 좋을 것 같다고 생각이 듭니다. 일단 아마도 jupyter extension이 설치가 되어야 이러한 작업이 가능한 것 같습니다. 설치가 안된 상태에서는 작동하지 않았습니다. 인텔리센스 Python Interactive 창에는 코드 완성, 멤버 목록, 메서드에 대한 빠른 정보 및 매개 변수 힌트와 같은 전체 Inte..
2022.10.06 -
vscode, colab) ipynb 파일을 html 파일로 바꾸기
vscode 안에서 ipynb에서 html로 바꾸기 위해서는 아래와 같은 명령어로 사용해야 한다. terminal jupyter nbconvert --to html /Your notebook path/file.ipynb google colabe에서도 동일하다. %%shell jupyter nbconvert --to html /Your notebook path/file.ipynb https://python.plainenglish.io/how-to-convert-google-colab-notebook-ipynb-to-html-ccfeda199246 How to Convert a Google Colab (.ipynb) Notebook to HTML Often, we need to share our code e..
2022.01.31 -
vscode) line length 늘리기
파이썬에서 black으로 포맷팅할 때 line length 설정 방법 공유 F1 -> Preference : Open User Settings -> 검색 : python formatting black args ADD item -> --line-length -> ADD item -> 119 이렇게 하면 됨! 아니면 다른 방식 -> setting.json "python.formatting.blackArgs": [ "--line-length", "119" ] 이것을 추가해도 됨! https://dev.to/adamlombard/vscode-setting-line-lengths-in-the-black-python-code-formatter-1g62
2021.09.05 -
vscode) 동일한 화면 생성하는 방법
vscode를 쓰면서 아쉬웠던 점은 docker container를 열면, 하나의 창에서 다 해야 해서 아쉬움이 있었다. 그래서 찾아보니, 역시 내가 모르는 것이였고, 이런 기능은 이미 존재하였다... 그래서 다른 분들도 아셨으면해서 공유한다. Ctrl + K , O https://www.reddit.com/r/vscode/comments/6jt7ns/one_project_multiple_windows/ One Project: Multiple Windows? This is quite a baffling shortcoming of VSCode. Being able to drag a tab and create a new window for that file in Atom, Sublime Text, and I..
2021.08.29 -
VSCode에서 Google Colab GPU Runtime 접속하기
아래 블로그를 참고해서 하나씩 직접 진행중... Steps: First, you need to have a cloudfare binary file. You can download it for your corresponding operating system from here. Follow all the instructions given here to install it. Once cloudflared is installed, you will have a binary(.exe) file after extracting the package. Copy the exact path to the binary file. For example, in my case it is in C drive, so I will wri..
2021.03.01 -
[vscode] pylance extenstion 사용할 때 발생하는 import [user library] could not resolve 해결하기
"완벽한 해결책은 아니라는 것을 먼저 말씀드립니다." 파이랜스(Pylance)는 마이크로소프트의 기존 파이썬(Python) 확장 기능과 연동돼 파이썬 개발자에게 더 빠른 타입 검사 및 프로그램 분석을 제공한다. pylance를 사용하면 개발자가 좀 더 빠르게 개발할 수가 있고, 여기에 Error Lens라는 extensions까지 같이 사용하면 더 좋다! 예를 들어 이런 식으로 vscode에서 error를 아주 잘 보여줘서 디버깅하기가 쉬워진다. 근데 여기서 발생한 문제가 있다. pylance를 사용했을 때 사용자가 따로 개발한 script는 잘 적용이 안되는 이슈가 있었다. 나 같은 경우에는 src --> data ---------> test train --> train ---------> train...
2021.02.12 -
[vscode] 원격서버에서 docker container 접속하기
일단 원격을 접속하려면 docker는 굳이 설치할 필요가 없다고 한다. 원격 서버에서 docker container를 접속하려면, local (노트북) 같은 곳에서도 docker를 설치해줘야 한다. 현재 환경 local : windows 10 원격 : 16.04 docker 설치 docs.docker.com/docker-for-windows/install/ Install Docker Desktop on Windows docs.docker.com hub.docker.com/editions/community/docker-ce-desktop-windows/ Docker Desktop for Windows - Docker Hub Docker Desktop for Windows Docker Desktop for ..
2021.02.06