VScode新手,虽然我喜欢它,但我觉得我可能设置错误或者比Atom或sublime3慢 . 运行简单代码时,显示这个简单的“Hello World”大约需要5秒钟 .

为什么它显示所有的路径废话,这是为什么它看起来这么慢?有没有办法调整这个?

谢谢!

Visual studio输出:

user_dev@DESKTOP-131452 MINGW64 ~/Documents/VSCODE/Python/BeautifulSoup
$ cd "C:\Users\user_dev\Documents\VSCODE\Python\BeautifulSoup" ; env "PYTHONIOENCODING=UTF-8" "PYTHONUNBUFFERED=1" C:/Python3/python.exe "C:\Users\user_dev\.
vscode\extensions\ms-python.python-2018.3.1\pythonFiles\PythonTools\visualstudio_py_launcher_nodebug.py" "C:\Users\user_dev\Documents\VSCODE\Python\BeautifulSou
p" 55240 34806ad9-833a-4524-8cd6-18ca4aa74f14 RedirectOutput,RedirectOutput "c:\Users\user_dev\Documents\VSCODE\Python\BeautifulSoup\Training\example.py"
Hello World

在Atom中尝试了同样的事情,它的速度非常快,ATOM输出:

Hello World
[Finished in 0.662s]

Update:

上面的代码运行得到输出:

print("Hello World!")

Python版本:

$ python --version
Python 3.6.4