Skip to content

Commit

Permalink
docs: enhance development installation instructions (#286)
Browse files Browse the repository at this point in the history
Thanks for your contribution. I'm merging your changes and I'll add your name to our contributor list. Thank you so much.
  • Loading branch information
nelzomal authored Nov 27, 2024
1 parent b5d4db0 commit 73661f7
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,15 @@ For contributors who plan to modify the source code:
```bash
git clone https://github.com/unclecode/crawl4ai.git
cd crawl4ai
pip install -e .
pip install -e . # Basic installation in editable mode
```
Install optional features:
```bash
pip install -e ".[torch]" # With PyTorch features
pip install -e ".[transformer]" # With Transformer features
pip install -e ".[cosine]" # With cosine similarity features
pip install -e ".[sync]" # With synchronous crawling (Selenium)
pip install -e ".[all]" # Install all optional features
```

## One-Click Deployment 🚀
Expand Down

0 comments on commit 73661f7

Please sign in to comment.