ubuntu安装微信开发者工具

文章目录
  1. 1. ubuntu安装微信开发者工具
  2. 2. 参考资料

ubuntu安装微信开发者工具

克隆代码到某个文件夹(例如/opt)

1
2
3
4
5
cd /opt/
git clone https://github.com/cytle/wechat_web_devtools.git
sudo chown -R [用户名]:[用户名] ./wechat_web_devtools
cd wechat_web_devtools
./bin/wxdt

如果报错则安装以下 wine

1
sudo apt install wine

添加快捷方式

1
sudo vim /usr/share/applications/wechat-ide.desktop
1
2
3
4
5
6
7
8
9
[Desktop Entry]
Encoding=UTF-8
Version=1.0
Type=Application
Name=WeChat-IDE
Icon=/opt/wechat_web_devtools/wechat-ide.png
Exec=/opt/wechat_web_devtools/bin/wxdt
StartupNotify=false
StartupWMClass=wechat-ide

安装桌面图标: 执行 bin/install_desktop.sh

参考资料