47

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?

Community
  • 1
  • 1
SparkAndShine
  • 17,001
  • 22
  • 90
  • 134

1 Answers1

105

It is

pip install python-dateutil --upgrade
itzMEonTV
  • 19,851
  • 4
  • 39
  • 49