Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I try to install httplib on my python but I am getting an error

$ pip install httplib

Collecting httplib

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

How to make it work?

like image 321
Mukesh Avatar asked Dec 24 '22 03:12

Mukesh


1 Answers

Are you using Python3?

The httplib module has been renamed to http.client in Python3

like image 200
ru10 Avatar answered Dec 25 '22 18:12

ru10