以下のコマンドを使用してurllib.requestモジュールをインストールしようとしました
Sudo pip install urllib.request
しかし、それは戻った
Downloading/unpacking urllib.request
Could not find any downloads that satisfy the requirement urllib.request
Cleaning up...
No distributions at all found for urllib.request
Storing debug log for failure in /home/mounarajan/.pip/pip.log
このモジュールをインストールするにはどうすればよいですか?
urllib.requestは、python3ブランチでのみ使用可能です。詳細については、次の投稿を参照してください。 rllib.request in Python 2.7
Python3では、urllib3モジュールを使用する必要があります。
$ pip3 install urllib3
または、仮想環境を使用している場合:
$ pip install urllib3
python 2では、単にurllibを使用します
import urllib
htmlfile=urllib.urlopen("your url")
htmltext=htmlfile.read()
in python 3、urllib.requestを使用する必要があります
import urllib.request
htmlfile=urllib.request.urlopen("your url")
htmltext=htmlfile.read()
CmdのPython3の場合、
pip install urllib3
または、anacondaを使用している場合:
conda install urllib3
希望、これがあなたを助ける