
colab:: font 설정 - edge 브라우저 고정폭 글꼴을 설정
- CODE-ing
- · 2023. 10. 7.
ERRORjupyter notebook could not initialize webview TO FIXC:\Users\\AppData\Roaming\Code or %appdata%\codeclear the contents of the folders Cache, CachedData, CachedExtensions, CachedExtensionVSIXs (if this folder exists) and Code Cache. https://stackoverflow.com/questions/72961947/when-i-update-my-vscode-to-v1-56-2-i-cant-run-jupyter-notebook When I update my VSCode to v1.56.2, I can't..
ubuntu에서 pyenv 쓰던 사람들은, 당연히 wsl에서도 동작하겠지 생각하지만아니다!!! 경로에러 난다.나도 3개월을 찾아헤매다가 한 20번은 실패한 듯한데... 윈도우에서 파일을 다루는 코드를 짜다보면 검색이나 깃허브에서 찾은 맥os/ubuntu 기준으로 만들어 둔 코드는 실행시 path error 자주 마주함.맥os 에서 작성한 코드보면 맥용 file path로만 코딩해 둔 경우가 많음.(리눅스 쓰는 애들은 윈도우도 같이 써서 그런지, 괜찮은 코드는 시스템os 따져서 경로 설정하게끔 코드 만들어 둠.) 어쨋거나 공유해 준 것만 해도 고마우니 Path경로 고치다가 보면 아~ 시간이 점점 늘어나고,간단히 돌려만 보려고 했는데 시간생각 하면 아까움.그래서 wsl에서 pyenv 못 쓰는게 너무 아..
간단 설명 *, **가 입력변수 앞에 붙어야 함 # (*args) : 여러개 input def func1(*args): ... # (**kwargs) : 여러개 key-value , dictionary형태 input def func2(**kwargs): ... 적용예시1 #### 개별 input def func1(input1, input2, input3): print("arg1:", input1) print("arg2:", input2) print("arg3:", input3) func1("myName", "is", "thekkom") #### *args 사용 def func1(*args): print("args:", args) for arg in args: print(arg) func1("myName"..
To resolve external dependencies within project. below things are important.. 1. The compiler should know that where are header '.h' files located in workspace. General specify all header files in "Additional Include Directories". 3. Project Properties -> Configuration Properties -> Linker -> General specify relative path for all lib files in "Additional Library Directories". https://stackoverfl..