0

To install Celery with it's redis dependencies, one can do this.

$ pip install celery[redis]

Is it possible to explicitly provide version numbers to both celery and redis in the above command? It will effectively be the same as the following two commands

$ pip install -Iv redis==2.10.3
$ pip install -Iv celery==3.1.18
0

2 Answers 2

1

You can specify it with the flag -Iv

pip install -Iv redis==2.10.3
Sign up to request clarification or add additional context in comments.

Comments

0

Use ==:

pip install -Iv redis==2.10.3

1 Comment

Use pip uninstall redis to unistall previous versions first, then do above

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.