Python을 최대한 문제 없이 설치하는 방법들
어지간하면 그냥 깔아도 별 문제가 없어야 한다.
그냥 도커 쓰자!
"settings": { "python.formatting.provider": "black", "python.formatting.blackArgs": [ "--line-length", "120" ], "editor.formatOnSave": true, "python.linting.pylintEnabled": false, "python.linting.enabled": true, "python.linting.flake8Enabled": true, "python.linting.lintOnSave": true, "python.linting.flake8Args": [ "--max-line-length=120" ], "python.analysis.diagnosticMode": "workspace", "python.analysis.typeCheckingMode": "basic", "python.languageServer": "Pylance", "python.pythonPath": "/usr/local/bin/python" }, // Add the IDs of extensions you want installed when the container is created. "extensions": [ "ms-python.vscode-pylance" ],