简体   繁体   中英

Does Microsoft Visual Studio Code has its own Python environment?

On my Windows 7 64-bit, I installed Anaconda3 v4.4.0 in C:\\Anaconda3, however it could not launch Jupyter ( Can't open anaconda jupyter notebook: Network Error (dns_unresolved_hostname) ), so I installed Microsoft Visual Studio Code then added python support , now i can run some simple python code such as

p = (4,5)
x,y=p
x
y
z=x+y
print(z)

Now my questions is, does Microsoft Visual Source Code has its own Python environment, or it's actually using Anaconda installed?

Since VS 2017 it comes with an Python Environment itself. So I would say that VS Code uses that and not Anaconda.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM