win11 安装 Android 子系统 与 一些设置

win11 安装 Android 子系统

写在安装之前

1.地区需要设置在美国
2.windows 中开启 Hyper-V
3.安装完成后搜索 适用于Android的Windosw子系统设置调整设置

安装

wsa安装地址

为了能安装任意的akp包需要开启开发者模式,并使用adb安装。

完成后,adb目录下使用下方命令

1
.\adb connect 127.0.0.1:58526

随后将下载的安装包复制到adb的文件夹中,使用下方命令安装

1
.\adb install .\someApk.apk

会提示安装成功

一些设置

PowerShell 安装 git

1
winget install --id Git.Git -e --source winget

设置git proxy

1
git config --global http.proxy socks5://127.0.0.1:7091

安装PowerLine fonts

参考

1
2
3
4
5
6
7
8
9
git clone https://github.com/powerline/fonts.git --depth=1
# install
cd fonts
Set-ExecutionPolicy Bypass
./install.ps1
Set-ExecutionPolicy Default
# clean-up a bit
cd ..
rm -rf fonts