Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not find a version that satisfies the requirement urllib

when I try to install urllib in Python 2.715 version , its remind me that

Could not find a version that satisfies the requirement urllib (from versions: )
No matching distribution found for urllib 

who can help me to figure this out ? thanks a lot

like image 218
php_bug_maker Avatar asked May 12 '18 08:05

php_bug_maker


1 Answers

This module is packaged with Python by default (see the docs) So you just need to import it:

import urllib.request
like image 119
Xantium Avatar answered Sep 22 '22 17:09

Xantium