我尝试在 python 上安装 httplib,但出现错误
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
如何让它发挥作用?
您在使用 Python3 吗?
httplib
模块已在 Python3
中重命名为 http.client
$ pip install httplib
Collecting httplib
Could not find a version that satisfies the requirement httplib (from versions: )
No matching distribution found for httplib
如何让它发挥作用?
您在使用 Python3 吗?
httplib
模块已在 Python3