pip install urllib2
时间: 2023-11-21 19:55:30 浏览: 157
Python urllib urllib2 urllib模块安装说明
很抱歉,pip install urllib2是错误的命令。因为urllib2是Python 2.x版本中的包,在Python 3.x中已经被拆分成了urllib.request和urllib.error两个包。如果你想在Python 3.x中使用urllib2的功能,可以使用以下代码导入urllib.request和urllib.error两个包:
```python
import urllib.request
import urllib.error
try:
# 发送GET请求
response = urllib.request.urlopen('https://www.example.com')
# 读取响应内容
content = response.read()
print(content)
except urllib.error.URLError as e:
print(e)
```
这段代码会发送一个GET请求到https://www.example.com,并打印出响应内容。如果请求失败,会打印出错误信息。
阅读全文