Sandeep Veerlapati
Sandeep Veerlapati

Reputation: 111

pip install not working on ubuntu 16.04?

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

Answers (1)

mab
mab

Reputation: 2782

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

Upvotes: 3

Related Questions