Reputation: 7186
I'm gertting this error when I try to install dateutil
:
Collecting dateutil
Could not find a version that satisfies the requirement dateutil (from versions: )
No matching distribution found for dateutil
You are using pip version 10.0.1, however version 19.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
If I run pip -V
I get this:
pip 19.0.1 from /Users/me/.pyenv/versions/3.7.2/lib/python3.7/site-packages/pip (python 3.7)
Have I configured something worng? How do I get dateutil insatalled?
Upvotes: 1
Views: 3971
Reputation: 214
It's not error. It's just warning message. If you see in console it should be printed in yellow color. Error are normally displayed in red color. And you are unable to install it because you have spelled it wrongly. as tebjorn put in comment, its dateutils so use below command
pip install dateutils
Upvotes: 0
Reputation: 2424
Try this:
For Python3:
pip3 install python-dateutil
For Python2:
pip install python-dateutil
Upvotes: 0