preamble
Previously recommended by the senior use of VSCode, after marveling at the power of VSCode, especially his configuration, more convenient than the previous use of sublime, just the lab also came to a new group of students, to carefully and step-by-step explanation of some of the easy to configure VSCode on their own computers and complete the landscaping and so on.
Preparation tools
Anaconda (here I use 3.5), the specific installation process can refer to the online tutorial, installation of Anaconda is still very simple.
VSCode (just search for VSCode on Baidu), the installation can also be installed directly.
Start Configuration
1, first of all, to confirm that our computer has been installed Python, the method is as follows (press win + R after typing cmd after pointing to confirm), in the command line, type Python, we can see roughly the following situation, it proves that we have successfully installed.
2, open our VSCode
First of all, the interface is very unfriendly for people like me who don't speak English very well, so let's modify the software into Chinese first to facilitate our operation afterwards. The interface at the beginning should be like this.
3, click on the card I marked the red place, in the search box, type Chinese, Chinese. Find the Chinese simplified plug-ins, click install, after we restart the software, you can find the software has been Chinese, which is convenient for us to operate.
4, and then return to the second step, here I recommend installing a few plug-ins, steps with the above Chinese plug-ins installed in the same way, directly point install. (I recommend the following plug-ins are downloaded)
Anaconda Extension Pack---- this plugin helps us to better auto-fill our code.
Beautify--------- --- This plugin allows us to have colored effects on our code, which makes it easier to read the code.
Code Runner--------- -This plugin is very powerful and allows us to run various types of code.
Document This--------- this plugin makes it easy to make header annotations.
Jupyter--------- --- This plugin is fine and enables us to do step-by-step debugging. # If you do not understand then this can choose not to install
Material Theme-------- installed this plugin, it's like My interface is light green (of course there are many more color themes to choose from)
Python--------- --- This plugin can aspect us to tap on our recent files. (It can also be good for displaying logical relationships)
vscode-icons--------- -This plugin can make different file types in VSCode have different types of icons.
The plugin Bracket Pair Colorizer ------ allows us to make our brackets correspond to each other, which avoids the awkwardness of having to count brackets afterwards.
5, most of the plug-ins are immediately available, but we still restart the software is better.
6. Click this button after downloading.
If you don't know where you have installed Python, you can type where python in the terminal.
Of course, this is only a very small part of the plug-in, as a qualified programmer is to find out some things on their own.VSCode there are a lot of fun plug-ins. You can go to Baidu or know how to search.
This is the whole content of this article.