o PC 환경 구축
- C:\Python37\Project로 이동하여
- python -m venv python_crawl 로 가상환경 만들고
- cd script로 이동하여 activate 명령어로 가상환경 활성화
- 가상환경 커맨드라인에서 code 입력하여 VS Code를 실행함
- VSCode가 실행되면 메뉴에서 보기 > 명령 팔레트 선택하고 pythonselect 입력하여 python select interpreter에서 좀 전에 생성한 가상환경 폴더의 /scripts 아래 python.exe를 선택함
- 다시 명령 팔레트 선택하고 Tasks:Configure Task 선택 > 그다음에 create task json 선택하고 others를 눌러서 파일이 생성됨
- 기본 설정을 카피한다.
{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "Project Label",
            "type": "shell",
            "command": "python",
            "args": [
                "$(file)"
            ],
            "presentation": {
                "reveal": "always",            
                "panel": "new"
            },
            "options": {
                "env": {
                    "PYTHONEIOENCODING":"UTF-8"
                }
            },
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

반응형

'아는 것이 힘 > IT세상' 카테고리의 다른 글

[Apple] iPhone pc 백업 위치 변경  (0) 2021.11.25
[Python] 크롤링 모듈 요약  (0) 2021.09.27
[Javascript] 조건에 맞는 값 응답 함수  (0) 2021.09.02
상대경로  (0) 2021.08.23
VScode 단축키  (0) 2021.08.18

+ Recent posts