Search result

개발자 커뮤니티

* KLDP - 리눅스, C https://kldp.org/tracker * Modern PHP User Group https://modernpug.org/posts https://wiki.modernpug.org/questions http://modernpug.github.io/php-the-right-way/ * PHP School https://...

Code

Python 3 사용법 정리

파이썬 3 사용법 정리 //--------------------- * 주석 - 한줄 주석 : # - 범위 주석 : ''' , """ ''' This is a multiline comment. ''' """ This is a multiline comment. """ //--------------------- * 코드 블...

Code

Python 3 사용법 정리

파이썬 3 사용법 정리 //--------------------- * 주석 - 한줄 주석 : # - 범위 주석 : ''' , """ ''' This is a multiline comment. ''' """ This is a multiline comment. """ //--------------------- * 코드 블...

Code

[C#] System.Management.ManagementException: Access denied 에러 해결 방법

System.Management.ManagementException: Access denied 에러 해결 방법 - WMI 정보를 읽으려고 하는데 '액세스가 거부되었습니다.'에러가 나는 경우 해결법 * 해결 방법 관리자 권한으로 실행한다. * 관리자 권한으...

Code

[C#] 에러 해결 An object reference is required for the non-static field, method, or property Dispatcher.BeginInvoke

WPF 프로그램을 WinForm으로 변경시 비동기 쓰레드 함수에서 문제 발생하는 경우 * 문제의 소스 private void BrowserView_OnFrameLoadEnd(object sender, FrameLoadEndEventArgs e) { Dispatcher.BeginInvoke((Acti...

Code

아나콘다 설치 에러 해결 방법

아나콘다 : 파이썬 배포판( 패키지 모음) - 미니콘다 설치시 에러, anaconda miniconda * 증상 anaconda install failed to create menus _conda.exe appcrash * 해결 방법 JDK 경로 제거,

Code

Faceswap 설치, 작동 에러 해결 방법

Faceswap https://github.com/deepfakes/faceswap - 28.7k https://www.faceswap.dev https://forum.faceswap.dev/viewtopic.php?f=4&t=20 //---------------- * 실행 에러 The ordinal 241 could not be located in...

Code

Visual Studio 2019 설치 에러 해결 방법

- 클린 제거를 했는데도 설치가 안될때 - 원인 : 설치본이 iso 파일인 경우 최신 버전 설치본을 다운 받아 설치한다 - CD로 이동 해서 다음 명령 실행 vs_enterprise.exe --layout c:\VSLayout --add Microsoft.Visu...

Code

[git] warning LF will be replaced by CRLF , 경고 메시지 안보게 하기

- 윈도우 git config --global core.autocrlf true - CRLF -> LF 로 변경 - 맥, 리눅스 git config --global core.autocrlf input - LF를 개행문자로 인식 - 경고 메시지 감추기 git config --global core.safecrlf...

Code