php editor Banana will introduce to you how to import language packs in win10. When using the win10 system, if you want to switch the system language or operate in another language, you can do so by importing a language pack. Importing language packs allows the system interface and application interface to be displayed in the required language, making it easier for users to use. Next, we will introduce in detail how to import language packs so that you can easily switch system languages.
Software that needs to be preparedgit for windows Git-2.37.3-64-bit.exe
TortoiseGit TortoiseGit-2.13.0.1-64bit.msi
TortoiseGit Chinese language package TortoiseGit-LanguagePack-2.13.0.0-64bit-zh_CN.msi
Software required for software installationFirst install git for windows. The settings can be as recommended and no changes are required.
Next install TortoiseGit
The next step requires special attention, the configuration cannot use the default set up. If you use the default settings, you will not be able to use the OpenSSH client that comes with the new version of Windows to generate a public-private key pair to access GitHub.
Click next to complete
Install the Chinese language pack
First run configuration, Follow the default
Create private keyUse the command in the screenshot below to create a Windows 10 access private key, and then fill it in the corresponding github account.
ssh-keygen
Import the private key into GitHubAs shown in the picture below, you can import the access public key into github. Accessing github in this way is very stable and is the same as https access. The effect is exactly the same. The cloning command has the following changes
Change:
git clone https://github.com/obsproject/obs-studio.git
to :
git clone git@github.com:obsproject/obs-studio.git
##After the addition is completed, you can use the above Command to clone the github repository. After successfully accessing github with the public key, the key of the newly added entry in the github background will turn green.The above is the detailed content of win10 import language pack. For more information, please follow other related articles on the PHP Chinese website!