Reputation: 6405
After installed Microsoft Visual Studio, I got python 3.6.3, which later can be seen in Visual Studio Code, by command "Python: Select Interpreter".
Also, I downloaded Python 3.7.3 embed-amd64 version and extracted it to C:\python-3.7.3-embed-amd64
, inside where there is a python.exe
that can be run directly.
Now, is it possible to config Visual Studio Code, so that python 3.7.3 will be an option visible?
Upvotes: 0
Views: 1679
Reputation: 705
You can add the path to the python executable:
you can find the path by : whereis python
command
paste it in the bar where current is written
Upvotes: 1
Reputation: 629
According to the docs then yes. However, I strongly recommend you to create virtualenv in your workdir using python 3.7.3 that you downloaded.
Upvotes: 0