Skip to content

Commit 56ee407

Browse files
authored
chore: single quote install crawlee with extras (#158)
### Description - To avoid issues with `zsh` when using package names with extras (`crawlee[beautifulsoup]`). - [zsh: no matches found: requests[security]](https://stackoverflow.com/questions/30539798/zsh-no-matches-found-requestssecurity). - We encountered this issue with @souravjain540.
1 parent 1523bde commit 56ee407

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ Visit our GitHub repository for more information [Crawlee on GitHub](https://git
2222

2323
Crawlee is available as the [`crawlee`](https://pypi.org/project/crawlee/) PyPI package.
2424

25-
```
25+
```bash
2626
pip install crawlee
2727
```
2828

2929
Additional, optional dependencies unlocking more features are shipped as package extras.
3030

3131
If you plan to use `BeautifulSoupCrawler`, install `crawlee` with `beautifulsoup` extra:
3232

33-
```
34-
pip install crawlee[beautifulsoup]
33+
```bash
34+
pip install 'crawlee[beautifulsoup]'
3535
```
3636

3737
## Features

0 commit comments

Comments
 (0)