找不到满足 urllib 要求的版本

php*_*ker 8 python installation urllib

当我尝试在 Python 2.715 版本中安装 urllib 时,它提醒我

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

谁能帮我解决这个问题?多谢

Sim*_*mon 9

该模块默认使用 Python 打包(请参阅文档),因此您只需导入它:

import urllib.request
Run Code Online (Sandbox Code Playgroud)