Skip to content

Commit e188b79

Browse files
author
Sam Partee
authored
0.0.3 release (#49)
1 parent 95c4677 commit e188b79

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,21 @@ RedisVL has a host of powerful features designed to streamline your vector datab
5454

5555
Please note that this library is still under heavy development, and while you can quickly try RedisVL and deploy it in a production environment, the API may be subject to change at any time.
5656

57-
`pip install redisvl` (Coming Soon)
57+
First, install RedisVL using pip:
58+
59+
```
60+
pip install redisvl
61+
```
62+
63+
Then make sure to have Redis with the Search and Query capability running on Redis Cloud or
64+
locally in docker by running
65+
66+
```bash
67+
docker run -d -p 6379:6379 -p 8001:8001 redis/redis-stack:latest
68+
```
69+
70+
This will also spin up the Redis Insight UI at http://localhost:8001
71+
5872

5973
## Example Usage
6074

redisvl/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.2"
1+
__version__ = "0.0.3"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def read_dev_requirements():
2222

2323
setup(
2424
name="redisvl",
25-
version="0.0.2",
25+
version="0.0.3",
2626
python_requires=">=3.7",
2727
install_requires=read_requirements(),
2828
extras_require=extras_require,

0 commit comments

Comments
 (0)