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
42hrs
  • 11
  • 1
  • 3

2 Answers2

1

You can specify it with the flag -Iv

pip install -Iv redis==2.10.3
alec_djinn
  • 10,104
  • 8
  • 46
  • 71
0

Use ==:

pip install -Iv redis==2.10.3

Vaulstein
  • 20,055
  • 8
  • 52
  • 73