SpoofDPI/_docs/QUICK_START.md

51 lines
1.3 KiB
Markdown
Raw Normal View History

# Quick Start
## Binary
2024-08-27 03:14:54 +00:00
SpoofDPI will be installed in `~/.spoofdpi/bin`.
To run SpoofDPI in any directory, add the line below to your `~/.bashrc || ~/.zshrc || ...`
2024-08-27 03:14:54 +00:00
```bash
export PATH=$PATH:~/.spoofdpi/bin
```
---
```bash
# macOS Intel
curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s darwin-amd64
# macOS Apple Silicon
curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s darwin-arm64
# linux-amd64
curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s linux-amd64
# linux-arm
curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s linux-arm
# linux-arm64
curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s linux-arm64
# linux-mips
curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s linux-mips
# linux-mipsle
curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s linux-mipsle
```
## Homebrew 🍻
2024-08-27 03:14:54 +00:00
```bash
brew install spoofdpi
2024-08-27 03:14:54 +00:00
```
## Go
You can also install SpoofDPI with `go install`.
```bash
2024-08-27 03:14:54 +00:00
go install github.com/xvzc/SpoofDPI/cmd/spoofdpi@latest
```
# How to build your own binary
```bash
2024-08-27 03:14:54 +00:00
git clone https://github.com/xvzc/SpoofDPI.git
cd SpoofDPI
go build ./cmd/...
```