首页  编辑  

最简单安装V2ray的方法

Tags: /计算机文档/软件应用技巧/   Date Created:

发现一个最简单的安装 V2Ray科学上网工具的方式,真的是一键安装:
複製代碼
bash <(curl -s -L https://git.io/v2ray.sh)
这个脚本还可以一并把 Shadowsocks 一起安装了,可以作为一个备用方案。
注意:如图提示"curl: command not found",则需要在系统上安装 curl 命令。
如果是 Debian 或 Ubuntu,则运行
複製代碼
sudo apt-get update -y && sudo apt-get install curl -y
如果是 Centos, 则
複製代碼
sudo yum update -y && sudo yum install curl -y