Skip to content

Commit 9ca19b0

Browse files
committed
Fix "pip install" in readme (#233)
Package name must be wrapped with "" if there's a ">= " in it
1 parent 4d18e0f commit 9ca19b0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,15 @@ Use Quix Streams to build event-driven, machine learning/AI or physics-based app
4343
To install the latest alpha version of Quix Streams 2.0:
4444

4545
```shell
46-
python -m pip install quixstreams>=2.0a
46+
python -m pip install --pre quixstreams
4747
```
4848

4949
or
5050

5151
```shell
52-
python -m pip install --pre quixstreams
52+
python -m pip install "quixstreams>=2.0a"
5353
```
5454

55-
5655
#### Requirements
5756
Python 3.8+, Apache Kafka 0.10+
5857

0 commit comments

Comments
 (0)