blob: 95a4a408f9fb2f755346960cda7b2a62bb449b03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# 微信开发者工具 for Arch Linux
这个软件包已放在 [AUR](https://aur.archlinux.org/packages/wechat-devtool),仅适用于 Arch Linux 及其衍生的发行版。
其他 Linux 平台,请移步原工具仓库:[微信开发者工具 for Linux](https://github.com/cytle/wechat_web_devtools)。
## 安装
> 安装的目录为 `/opt/wechat-devtool`。
```shell
$ git clone https://aur.archlinux.org/wechat-devtool.git
$ cd wechat-devtool
$ makepkg -si
```
也可以通过 AUR 工具安装,如 `aurman`:
```shell
$ aurman -S wechat-devtool
```
安装后,可以通过快捷方式启动,也可以命令行启动:
```
$ /opt/wechat-devtool/bin/wxdt
```
## 卸载
```shell
$ sudo pacman -R wechat-devtool
```
## 常见问题
### WeappVendor is not a directory
> cp: target '/home/user/.config/wechat_web_devtools/WeappVendor/' is not a directory
这是因为路径不存在,手动创建即可:
```shell
$ mkdir -p ~/.config/wechat_web_devtools/WeappVendor/
```
|