Reputation: 111
I am trying to install Celery using pip, but it's throwing me the below error. I tried to install some other packages but it resulted in the same error as mentioned below.
> pip install Celery
Error:
Collecting Celery
Could not find a version that satisfies the requirement Celery (from versions:
)
No matching distribution found for Celery.
I am using ubuntu 16.04 on oracle virtual box 5.2.2 and python 2.7.14
Upvotes: 0
Views: 1195
Reputation: 2782
Use pip install celery
, without capital letters as seen on https://pypi.org/project/celery/.
Upvotes: 3