8 lines
246 B
Markdown
8 lines
246 B
Markdown
## How to build
|
|
```
|
|
python -m venv .venv
|
|
source .venv/bin/activate
|
|
pip install -U pip
|
|
pip install -r requirements
|
|
pyinstaller --onefile check_dns_advanced.py --collect-all importlib --collect-all h2 --collect-all httpx --collect-all httpcore
|
|
``` |