[mac]-mac安装wails

导语:mac安装wails

# 安装xcode
xcode-select  --install
# 安装 Wails CLI
go install github.com/wailsapp/wails/v2/cmd/wails@latest 

# 检测wails是否安装好
wails doctor

[mac]-mac安装wails_第1张图片

创建vue的项目

# 创建一个名为redis-client的项目
wails init -n redis-client -t vue

运行项目

# 使用wails dev运行项目
cd redis-client     
wails dev  
# http://localhost:5173/   我这里是访问这个 
# 没法弹出app 需要重装xcode
sudo rm -rf /Library/Developer/CommandLineTools
ls -l /Library/Developer/CommandLineTools
xcode-select --install

https://wails.io/zh-Hans/docs/gettingstarted/installation

你可能感兴趣的:(mac,macos)