settings.json
"python.pythonPath": "/Users/brandonwie/opt/anaconda3/bin/python",
"[python]": {
"editor.tabSize": 4
},
"python.languageServer": "Pylance",
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.formatting.blackPath": "/Users/brandonwie/opt/anaconda3/bin/black",
"python.showStartPage": false,
"python.formatting.provider": "black",
"python.analysis.typeCheckingMode": "basic",
I'm using VSCode
, I've installed anaconda3
to try conda
environment, but then black
formatter stopped working right after I start using conda Python(I don't know it's because of conda Python). So I installed black with (conda) pip, but nothing is working..
Initially, the blackPath
in setting.json
was set to /usr/local/bin/black
. The black formatter was working flawlessly until I install and set up VSCode with conda, there was a pop up at the right bottom when I saved a file "cannot find black" something like that.(because of 'format on save') I've tried changing the path to /usr/...
and /Users/
back and forth, but doesn't work as well.
How can I solve this issue?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…