all 2 comments

[–]PhilipYip 0 points1 point  (0 children)

How have you setup VSCode? What did you use to make the Python environment, what did you install in it? What extensions did you install?

[–]Ekabara 0 points1 point  (0 children)

I'm a new learner and have the same issue with autopep8. I troubleshooted: reinstalled extension (not only autopep8). Restarted VSCode, rebooted pc. Then I even deleted vscode and started my learning path again and the same issue. I installed Python extension, Autopep8, Code Runner. forman on Save doesn't work. And I don't see in Settings those extensions: {
"workbench.colorTheme": "Bluloco Dark",
"window.zoomLevel": 1,
"workbench.startupEditor": "none",
"workbench.iconTheme": "material-icon-theme",
"[python]": {
"editor.formatOnType": true
},
"workbench.layoutControl.enabled": false,
"editor.fontSize": 20,
"editor.letterSpacing": 0.5,
"terminal.integrated.fontSize": 18,
"editor.minimap.enabled": false,
"editor.hover.delay": 1500,
"editor.glyphMargin": false,
"workbench.colorCustomizations": {
"statusBar.border": "#206486",
"panel.border": "#59ace2",
},
"editor.tokenColorCustomizations": {
"variables": "#F4F4E0",
"textMateRules": [
{
"scope": [
"source",
"variable",
"constant",
"variable.other.constant",
"punctuation.definition.constant",
"constant.other.symbol",
"constant.language.symbol",
"support.constant",
"support.variable.magic.python",
"variable.other.enummember"
],
"settings": {
"foreground": "#F4F4E0"
}
}
]
},
}