doesn't load modules #17981
doesn't load modules
#17981
|
when i run the extension's python.defaultInterpreterPath and python.pythonPath is set to the same .exe . but when i run the command in the Terminal from python.createTerminal i get this and unable to use pip or anything how to fix this ? |
Answered by
brettcannon
Nov 9, 2021
Replies: 2 comments 3 replies
|
The problem is you're typing |
1 reply
Answer selected by
irvnriir
|
by the way, why then python.createTerminal doesn't open the python console ? |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

The problem is you're typing
help()in PowerShell, not a Python REPL. First typepython3in PowerShell and that will launch the REPL (you will know it worked when you see the>>>prompt). Now you can usehelpon Python objects.