Python Development Enviroment

note-taking

1.The development tools:

 Visual studio Code

2.Library Enviroment

 Anaconda

3.Anaconda Setup

Baidu.Beacause of the simple.

4.Set up the Vscode

 Vscode preference setting

{
    "csharp.format.enable": false,
    "workbench.iconTheme": "eq-material-theme-icons",
    "workbench.colorTheme": "One Dark Pro",
    "editor.fontSize": 16,
    "files.autoSave": "afterDelay",
    "git.ignoreMissingGitWarning": true,
    "team.showWelcomeMessage": false,
    // "terminal.integrated.shell.windows": "C:\\Windows\\System32\\bash.exe",
    "editor.minimap.enabled":false,
    "python.pythonPath": "C:\\Users\\okoky\\Anaconda3\\python.exe",
    
    "python.formatting.provider": "yapf",
    "python.linting.flake8Enabled": true,
    "python.linting.pylintArgs": [
        "--disable=W,C,E"
    ]
}

5.pygame Library Setup

in Anaconda Prompt The input "pip install pygame"

猜你喜欢

转载自blog.csdn.net/okokyu/article/details/81169705