Git installed
Git – Downloading Package
- After the installation, configure the SSH key
- Configure the user name and email address
git config --global user.email [email protected]
git config --global user.name "xxx"
Copy the code
Node
Install node using NVM
Download it from: Releases · CoreyButler/NVM-Windows
Open the installation package and select the directory for storing NVM and nodejs. Do not select c:/ Program Files. The two directories are used to automatically add environment variables to the system.
Add image to D:\ NVM \settings. TXT to increase speed:
node_mirror: https://npm.taobao.org/mirrors/node/
npm_mirror: https://npm.taobao.org/mirrors/npm/
Copy the code
- Install the node
NVM install v14.15.0Copy the code
It is recommended to execute this command using Powershell, otherwise you may encounter some problems on Gitbash
- Install MSVS
npm install --msvs_version 2019 -g
npm config set msvs_version 2019 -g
Copy the code
Visual Studio build tools
Download and install:
Download Visual Studio 2019 for Windows and Mac
Open and install: Visual Studio Build Tools 2019
Then click Modify:
And install.
Python 2.7 installation
-
www.python.org/download/re…
-
Remember to configure python 2.7 environment variables after installation!
- Blog.csdn.net/weixin_3862…