250x250
반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
Tags
- Liniux
- https
- 구글 클라우드
- html
- git pull
- root
- vscode
- DOM Parser
- php
- child theme
- mysql
- CentOS7
- Google Cloud
- front page
- launch.json
- home page
- wordpress
- Xdebug
- SSL
- Certbot
- Fail2ban
- Linux
- new user
- MariaDB
- Apache
- non-www
- crontab
- Mac
- LetsEncrypt
- centos
Archives
- Today
- Total
목록Software Development Engineering/Python (1)
between 0 and 1
Visual Studio Code에서 Python 실행환경 (launch.json) 설정하기
Visual Studio Code 에서 Python 을 개발하고자 할 때! 실행 혹은 디버깅 시 "Cannot launch program ~~~; setting the 'outFiles' attribute might help" 메세지가 나오며 실행되지 않을 때가 있다. 이건, launch.json 파일에서 인터프리터 (혹은 다른 언어라면 컴파일러) 설정을 해주지 않았기 때문에 발생하는 에러이다. 즉, 실행 방법을 VSCode 가 몰라서 발생하는 에러이다. Python의 경우, 간단히 아래 내용을 launch.json > configurations 에 추가해 주면 된다. { "name": "Python: Current File (integrated)", "type": "python", "request": ..
Software Development Engineering/Python
2019. 1. 2. 18:26