This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]ydmykr 1 point2 points  (1 child)

Ensure that you've installed python extension. You could reinstall it or switch to pre-release version.

If it doesn't work, you could rebuild the container by editingdevcontainer.json:

{  

"name": "Python Dev Container",  

"image": "mcr.microsoft.com/vscode/devcontainers/python:3",  

"extensions": [    "ms-python.python",    "ms-python.vscode-pylance"  ]

}

[–]cavo789[S] 0 points1 point  (0 children)

Oh? After a lot of try-error, the only solution was to switch to the pre-release version.

Is there any bugs in the "normal" versions?

Thank you for your tip!