webwart
webwart

Reputation: 21

VScode and WinPython

I try to use WinPython-64bit-3.6.3.0Qt5 on Windows 10 Pro with VScode. Winpython is installed in C:\Users\Public\WinPython-64bit-3.6.3.0Qt5. In the user settings file I have, but I cannot see WinPython in list of available python intepreters and python environments. What could be wrong. I tried also to use "\"

{
    "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",

    "python.pythonPath": "C:/Users/Public/WinPython-64bit-3.6.3.0Qt5/python-3.6.3.amd64/python.exe"
}

Thanks for any hint.

Upvotes: 2

Views: 8151

Answers (2)

stonebig
stonebig

Reputation: 1191

Here is a procedure, to have a movable vscode, next to your movable WinPython https://github.com/winpython/winpython_afterdoc/blob/master/docs/installing%20VScode.ipynb

Upvotes: -1

You need to specify path to the folder, not to python.exe. Like WinPython-64bit-3.6.3.0Qt5\\python-3.6.3.amd64

See also https://github.com/Microsoft/vscode-python/issues/784

Upvotes: 2

Related Questions