Tag:vscode
-
Detailed explanation of vscode building go development environment case
preface AvailablegoLang just use golang This configuration is troublesome. Tips: the following is the text of this article. The following cases are for reference 1、 Installing golang Installation address Self selection according to the system II Configure environment variables #Enter in CMD Environment variable configuration completed IIIvscodeInstalling plug-ins IV Install golang dependencies CMD execute with […]
-
Windows10 configures vscode c++ environment (super detailed, for Xiaobai and big guys)
I read what the big guys on the Internet match. Can’t I understand it? Am I a little white? It’s too difficult. It can’t stop me. I want to use this very coquettish IDE, so after continuous exploration, the configuration is finally successful. Xiaobai doesn’t need to panic. This time it’s very simple. It must […]
-
Installation and some skills of wsl2
Article catalogue Installation and use of windows subsystem for Linux (wsl2 GUI) 1 Overview 2 install wsl2 2.1 prerequisites 2.2 enable virtual machine platform and Linux subsystem functions 2.3 installing a Linux distribution 2.4 start wsl2 2.5 enable wsl2 GUI function 2.6 quick start wsl2 3 wsl2 Ubuntu usage skills 3.1 importing and exporting Linux […]
-
The difference between Vue create and Vue init webpack
It’s all because of Vue cliDifferent version numbersDifferent initialization methods betweenVue create is vue-cli3 Initialization mode of XOfficial website reference Vue init is vue-cli2 The initialization method of X can use some templates above GitHub to initialize the project. Webpack is the official recommended standard template name. 1. Steps for upgrading Vue cli2 to Vue […]
-
Wamp deploy PHP + vscode + Xdebug (xdebug3. X stepping on the pit)
Ctfshow doesn’t really want to sit down when it does SQL injection. The database foundation is too poor to understand. So I jump to the later topic to see what I’m interested in. I see the topic of ThinkPHP. Tut I can’t understand 571 under the topic of ThinkPHP. What the boss does is to […]
-
Vscode installs go plug-ins and language development packages
Vscode installation process of go plug-in and language installation package, if there is no go environment and vscode, you can install go and vscode first. The next steps are mainly to install go plug-ins and language development packages through vscode plug-ins Vscode install go plugin Start vscode select plug-in – > search go select go […]
-
Windows + vscode configuration and use git, super detailed tutorial, collect it quickly
catalogue Step 1: install git command line tool Step 2: configure git in vscode Step 3: use vscode + git to submit to the warehouse When we need to submit the code to git warehouse after writing the code in vscode, but we don’t want to switch to git’s command line window, we can configure […]
-
Error reporting and solution of memory overflow of vscode running packaging Vue project
Error reporting and solution of memory overflow of vscode running packaging Vue project Recently, when I was working on another old project, I found that the project was unusually large and involved a lot of contents, resulting in memory overflow when I was running. Although it did not affect the running of the code, it […]
-
Vscode build go development environment
Tip: after the article is written, the directory can be generated automatically. Please refer to the help document on the right for how to generate it Article catalogue preface 1、 Install golang II Configure environment variables 3、 Vscode installation plug-in IV Installing golang dependencies V New go file preface If you can use golang, use […]
-
Go language is used in vscode
Go language introduction Go language, also known as golang, is produced by Google. With the development of cloud computing, it continues to grow. In recent years, more and more programmers use go language. Go programmers are generally called gopher. Go language is similar to C language in syntax. Go language has the following characteristics: Open […]
-
Solution to the problem of vscode see ‘go help modules’ (exit status 1) in go language
Problem Description: go: go.mod file not found in current directory or any parent directory; see ‘go help modules’ (exit status 1) Solution: (first, make sure the go locale is installed correctly) The operation of go language requires many dependent packages, which are on GitHub, so we need some agent tools to obtain these packages Browser […]
-
What to do to write go using vscode in Ubuntu
1. Configure go environment 1. Recommended download links https://golang.google.cn/dl/ You can use the WGet command to download the Linux installation package 2、Under the folder containing the compressed packageExecute command `sudo tar -xzvf go1.17.6.linux-amd64.tar.gz -C /usr/local Note: the version of go here should be modified according to the version number installed by yourself 3. Add environment […]