mirror of
https://github.com/mack-a/v2ray-agent.git
synced 2026-01-12 16:35:38 +08:00
16 lines
193 B
Markdown
16 lines
193 B
Markdown
# 安装wget、curl
|
|
- Centos
|
|
```
|
|
yum update && yum install -y wget curl
|
|
```
|
|
|
|
- Debian
|
|
```
|
|
apt update && apt install wget curl -y
|
|
```
|
|
|
|
- Ubuntu
|
|
```
|
|
apt-get update && apt-get install wget -y
|
|
```
|