- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
목록Python (63)
민서네집
[참고] http://itbrain.tistory.com/139 위 블로그에서 처럼 직접 다운로드 받지 말고, Notepad++에서 Plugins 메뉴에서 맨 밑에 Plugin Manager 메뉴 > Show Plugin Manager 를 실행시키자. Available 탭에서 NppExec 를 찾아서 Install 버튼을 클릭하면 된다. F6 키를 눌러서 Execute... 대화상자에서python "$(FULL_CURRENT_PATH)"라고 입력하고 python 이라는 이름으로 저장하자. python 이 PATH가 걸려 있으면 python 실행파일의 경로를 입력하지 않아도 실행된다. 한번 수행했던 명령을 다시 수행하는 단축키는 Ctrl-F6 Notepad++ convert tabs to spaces[출처..
http://python.org/ 명령 프롬프트 창에서 python -m SimpleHTTPServer 8000 라고 명령을 줬는데, python.exe: No module named SimpleHTTPServer 이라는 에러가 난다면... python -m http.server [port] for Python 3 There is no simpler way than ...With python 2.4 and later you can use the SimpleHTTPServer module like thispython -m SimpleHTTPServer [port]This will start a HTTP server on port 8000 (if no port is specified) ..