0

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

  • 1
    Possible duplicate of [pip install fails for every package ("Could not find a version that satisfies the requirement")](https://stackoverflow.com/questions/49748063/pip-install-fails-for-every-package-could-not-find-a-version-that-satisfies-th) – phd Apr 17 '18 at 12:56

1 Answers1

3

Use pip install celery, without capital letters as seen on https://pypi.org/project/celery/.

mab
  • 2,658
  • 26
  • 36
  • PyPI packages names are case-insensitive. `Celery` and `celery` are the same package. – phd Apr 17 '18 at 12:56