Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #203

Merged
merged 1 commit into from
Aug 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions spider_cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ On Linux

- OpenSSL 1.0.1, 1.0.2, 1.1.0, or 1.1.1

Note: You need to have `pkg-config` installed otherwise `openssl` will not be recognized by cargo.

```bash
# On Ubuntu:
apt install pkg-config
```

## Usage

The CLI is a binary so do not add it to your `Cargo.toml` file.
Expand All @@ -18,11 +25,11 @@ The CLI is a binary so do not add it to your `Cargo.toml` file.
# without headless
cargo install spider_cli
# with headless
cargo install spider_cli --chrome
cargo install -F chrome spider_cli
# with smart mode defaults to HTTP and Headless when needed
cargo install spider_cli --smart
cargo install -F smart spider_cli
# with full resources not just web pages
cargo install spider_cli --full_resources
cargo install -F full_resources spider_cli
```

## Cli
Expand Down