vscode Python 运行环境配置
生活随笔
收集整理的這篇文章主要介紹了
vscode Python 运行环境配置
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
{ "git.ignoreMissingGitWarning": true, "window.zoomLevel": 1, "[python]": {}, # 關閉linting提示。 "python.linting.pylintEnabled": false, # 開啟yapf "python.formatting.provider": "yapf", # 開啟flake8python自動補全工具 "python.linting.flake8Enabled": true, "workbench.colorTheme": "Monokai", "workbench.iconTheme": "vscode-icons", "python.autoComplete.addBrackets": true, # 關閉flake8的檢測功能。 "python.linting.flake8Args": [ "--select=errors" ], "files.autoGuessEncoding": true, # code run每次運行代碼,清除顯示 "code-runner.clearPreviousOutput": true, # 在終端運行設置。 "code-runner.runInTerminal": true, }
轉載于:https://www.cnblogs.com/wuzaipei/p/9576900.html
總結
以上是生活随笔為你收集整理的vscode Python 运行环境配置的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: JAVA基础知识总结8(设计模式)
- 下一篇: websocket python爬虫_p