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 ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
The problem is you're typing |
Beta Was this translation helpful? Give feedback.
-
by the way, why then python.createTerminal doesn't open the python console ? |
Beta Was this translation helpful? Give feedback.
The problem is you're typing
help()
in PowerShell, not a Python REPL. First typepython3
in PowerShell and that will launch the REPL (you will know it worked when you see the>>>
prompt). Now you can usehelp
on Python objects.