SparkAndShine
SparkAndShine

Reputation: 18027

Upgrade the Python package dateutil: Could not find a version

I tried to upgrade dateutil from 2.5.3 to the newest version 2.6.0 with pip install dateutil --upgrade, but got the issue Could not find a version.

$ pip install dateutil --upgrade
Collecting dateutil
  Could not find a version that satisfies the requirement dateutil (from versions: )
No matching distribution found for dateutil

I checked the post Could not find a version that satisfies the requirement . Running pip freeze | grep dateutil got,

$ pip freeze | grep dateutil
python-dateutil==2.5.3

How do I know which version satisfies my machine? Is it possible to upgrade dateutil to the newest version?

Upvotes: 51

Views: 84735

Answers (1)

itzMEonTV
itzMEonTV

Reputation: 20359

It is

pip install python-dateutil --upgrade

Upvotes: 111

Related Questions