Skip to content

Commit

Permalink
Fix "pip install" in readme (#233)
Browse files Browse the repository at this point in the history
Package name must be wrapped with "" if there's  a ">= " in it
  • Loading branch information
daniil-quix committed Nov 8, 2023
1 parent 4d18e0f commit 9ca19b0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,15 @@ Use Quix Streams to build event-driven, machine learning/AI or physics-based app
To install the latest alpha version of Quix Streams 2.0:

```shell
python -m pip install quixstreams>=2.0a
python -m pip install --pre quixstreams
```

or

```shell
python -m pip install --pre quixstreams
python -m pip install "quixstreams>=2.0a"
```


#### Requirements
Python 3.8+, Apache Kafka 0.10+

Expand Down

0 comments on commit 9ca19b0

Please sign in to comment.