Files
s5p/docs/INSTALL.md
user 0710dda8da feat: initial SOCKS5 proxy with chain support
Asyncio-based SOCKS5 server that tunnels connections through
configurable chains of SOCKS5, SOCKS4/4a, and HTTP CONNECT proxies.
Tor integration via standard SOCKS5 hop.
2026-02-15 03:10:25 +01:00

40 lines
480 B
Markdown

# s5p -- Installation
## Prerequisites
- Python >= 3.11
- pip
- Tor (optional, for Tor-based chains)
## Install
```bash
cd ~/git/s5p
python -m venv .venv
source .venv/bin/activate
pip install -e .
```
## Verify
```bash
s5p --version
which s5p
```
## Install Tor (optional)
```bash
sudo apt install tor
sudo systemctl enable --now tor
# Verify Tor SOCKS5 port
ss -tlnp | grep 9050
```
## Symlink (alternative)
```bash
ln -sf ~/git/s5p/.venv/bin/s5p ~/.local/bin/s5p
```