Erreur python du jour: ModuleNotFoundError: Aucun module nommé'bs4 '

Changement de programme (2) Python3: URL comme argument de ligne de commande (wikipedia) https://qiita.com/kaizen_nagoya/items/fc095b0c580a35001ea7

Des travaux sont en cours avec docker.

docker (89) python2, python3 avec docker https://qiita.com/kaizen_nagoya/items/ecbe11a4d743357134d5

docker/ubuntu


# pip install bs4
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support
Collecting bs4
  Downloading https://files.pythonhosted.org/packages/10/ed/7e8b97591f6f456174139ec089c769f89a94a1a4025fe967691de971f314/bs4-0.0.1.tar.gz
Collecting beautifulsoup4
  Downloading https://files.pythonhosted.org/packages/c5/48/c88b0b390ae1f785942fc83413feb1268a1eb696f343d4d55db735b9bb39/beautifulsoup4-4.8.2-py2-none-any.whl (106kB)
     |################################| 112kB 1.7MB/s 
Collecting soupsieve>=1.2
  Downloading https://files.pythonhosted.org/packages/81/94/03c0f04471fc245d08d0a99f7946ac228ca98da4fa75796c507f61e688c2/soupsieve-1.9.5-py2.py3-none-any.whl
Collecting backports.functools-lru-cache; python_version < "3"
  Downloading https://files.pythonhosted.org/packages/da/d1/080d2bb13773803648281a49e3918f65b31b7beebf009887a529357fd44a/backports.functools_lru_cache-1.6.1-py2.py3-none-any.whl
Building wheels for collected packages: bs4
  Building wheel for bs4 (setup.py) ... done
  Created wheel for bs4: filename=bs4-0.0.1-cp27-none-any.whl size=1273 sha256=79b8b3765197c5d2662611ba7f1199b00147c4741c41f4dc9cdc82d0f08f0609
  Stored in directory: /root/.cache/pip/wheels/a0/b0/b2/4f80b9456b87abedbc0bf2d52235414c3467d8889be38dd472
Successfully built bs4
Installing collected packages: backports.functools-lru-cache, soupsieve, beautifulsoup4, bs4
Successfully installed backports.functools-lru-cache-1.6.1 beautifulsoup4-4.8.2 bs4-0.0.1 soupsieve-1.9.5

# pip3 install bs4
Collecting bs4
  Cache entry deserialization failed, entry ignored
  Cache entry deserialization failed, entry ignored
  Downloading https://files.pythonhosted.org/packages/10/ed/7e8b97591f6f456174139ec089c769f89a94a1a4025fe967691de971f314/bs4-0.0.1.tar.gz
Collecting beautifulsoup4 (from bs4)
  Cache entry deserialization failed, entry ignored
  Downloading https://files.pythonhosted.org/packages/cb/a1/c698cf319e9cfed6b17376281bd0efc6bfc8465698f54170ef60a485ab5d/beautifulsoup4-4.8.2-py3-none-any.whl (106kB)
    100% |################################| 112kB 2.4MB/s 
Collecting soupsieve>=1.2 (from beautifulsoup4->bs4)
  Cache entry deserialization failed, entry ignored
  Cache entry deserialization failed, entry ignored
  Downloading https://files.pythonhosted.org/packages/81/94/03c0f04471fc245d08d0a99f7946ac228ca98da4fa75796c507f61e688c2/soupsieve-1.9.5-py2.py3-none-any.whl
Building wheels for collected packages: bs4
  Running setup.py bdist_wheel for bs4 ... done
  Stored in directory: /root/.cache/pip/wheels/a0/b0/b2/4f80b9456b87abedbc0bf2d52235414c3467d8889be38dd472
Successfully built bs4
Installing collected packages: soupsieve, beautifulsoup4, bs4
Successfully installed beautifulsoup4-4.8.2 bs4-0.0.1 soupsieve-1.9.5

# python2.7 wia.py
Traceback (most recent call last):
  File "wia.py", line 9, in <module>
    from urllib.request import urlopen
ImportError: No module named request

# python3.8 wib.py
Traceback (most recent call last):
  File "wib.py", line 8, in <module>
    from bs4 import BeautifulSoup
ModuleNotFoundError: No module named 'bs4'

# pip install urllib
ERROR: Could not find a version that satisfies the requirement urllib (from versions: none)
ERROR: No matching distribution found for urllib

# pip3 install urllib
Collecting urllib
Exception:
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/pip/basecommand.py", line 215, in main
    status = self.run(options, args)
  File "/usr/lib/python3/dist-packages/pip/commands/install.py", line 353, in run
    wb.build(autobuilding=True)
  File "/usr/lib/python3/dist-packages/pip/wheel.py", line 749, in build
    self.requirement_set.prepare_files(self.finder)
  File "/usr/lib/python3/dist-packages/pip/req/req_set.py", line 380, in prepare_files
    ignore_dependencies=self.ignore_dependencies))
  File "/usr/lib/python3/dist-packages/pip/req/req_set.py", line 554, in _prepare_file
    require_hashes
  File "/usr/lib/python3/dist-packages/pip/req/req_install.py", line 278, in populate_link
    self.link = finder.find_requirement(self, upgrade)
  File "/usr/lib/python3/dist-packages/pip/index.py", line 465, in find_requirement
    all_candidates = self.find_all_candidates(req.name)
  File "/usr/lib/python3/dist-packages/pip/index.py", line 423, in find_all_candidates
    for page in self._get_pages(url_locations, project_name):
  File "/usr/lib/python3/dist-packages/pip/index.py", line 568, in _get_pages
    page = self._get_page(location)
  File "/usr/lib/python3/dist-packages/pip/index.py", line 683, in _get_page
    return HTMLPage.get_page(link, session=self.session)
  File "/usr/lib/python3/dist-packages/pip/index.py", line 795, in get_page
    resp.raise_for_status()
  File "/usr/share/python-wheels/requests-2.18.4-py2.py3-none-any.whl/requests/models.py", line 935, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://pypi.org/simple/urllib/

Erreur URLlib

Installer urllib avec pip3 http://rongonxp.hatenablog.jp/entry/2018/02/01/000816

# pip3 install urllib3
Collecting urllib3
  Downloading https://files.pythonhosted.org/packages/b4/40/a9837291310ee1ccc242ceb6ebfd9eb21539649f193a7c8c86ba15b98539/urllib3-1.25.7-py2.py3-none-any.whl (125kB)
    100% |################################| 133kB 1.7MB/s 
Installing collected packages: urllib3
Successfully installed urllib3-1.25.7
# python3 wib.py
Traceback (most recent call last):
  File "wib.py", line 15, in <module>
    url = "https://ja.wikipedia.org/wiki/" + urllib.parse.quote(args[1])
IndexError: list index out of range

Historique du document

ver. 0.01 Première ébauche 20191230 Après-midi ver. 0.02 addendum urllib3 20191230 Nuit

Recommended Posts

Erreur python du jour: ModuleNotFoundError: Aucun module nommé'bs4 '
Erreur python d'aujourd'hui: ModuleNotFoundError: aucun module nommé
Erreur python d'aujourd'hui: ModuleNotFoundError: aucun module nommé
Erreur python d'aujourd'hui: ModuleNotFoundError: aucun module nommé'requests '
Erreur Python: ModuleNotFoundError: aucun module nommé 'flask'
[Python] ModuleNotFoundError: aucun module nommé "urlparse"
ModuleNotFoundError: Erreur de module nommé'_bz2 'en Python dans pyenv
ModuleNotFoundError en Python: aucun module nommé story
Erreur d'importation: aucun module nommé "xxxxxx" dans Python3
ModuleNotFoundError: aucun module nommé "py4j"
Erreur python d'aujourd'hui: tué
ModuleNotFoundError: Aucun module nommé "flask_sqlalchemy"
Importer cv2 ModuleNotFoundError: Aucun module nommé "cv2" dans python3
Erreur python du jour: SyntaxError Caractère non ASCII
Erreur python d'aujourd'hui: l'image est vide
ModuleNotFoundError dans la poésie: aucun module nommé'etuptools '
Que faire lorsque ModuleNotFoundError: Aucun module nommé'XXX 'ne se produit en Python
Erreur lors de l'installation d'opencv-python sur jetson nano (ModuleNotFoundError: aucun module nommé'skbuild ')
Soudainement avec Python PyInstaller Aucun module nommé pyinstaller
Contre-mesures pour ModuleNotFoundError: aucun module nommé '***' lors de l'exécution de Flask
J'obtiens une erreur Python No module nommée'encodings 'avec la commande aws
Erreur lors de l'installation d'un module avec Python pip
Solution pour "Erreur d'importation: aucun module nommé demandes"
Erreur python d'aujourd'hui: UnicodeEncodeError: le codec 'ascii' ne peut pas encoder les caractères
Importer le module Python
python> import seiral> ImportError: aucun module nommé serial
Le chien de Python d'aujourd'hui
Tentative d'installation d'opencv-python3 sur jetson nano mais erreur (ModuleNotFoundError: aucun module nommé'skbuild ')
Erreur python d'aujourd'hui: UnicodeEncodeError: le codec 'utf-8' ne peut pas encoder les caractères
Module de collections Python
Un problème avec scikit-learn obtenant l'erreur Aucun module nommé'_bz2 '
ModuleNotFoundError: No module Que faire si vous obtenez 'sensorflow.contrib'
Erreur python d'aujourd'hui: HTTPError: 404 Erreur du client: introuvable pour l'url:
Erreur python d'aujourd'hui: argument de mot-clé non valide pour cette fonction
Module Python (mémo d'apprentissage Python ④)
Créer un module Python
Erreur Python non implémentée
importation du module d'origine python
J'ai obtenu "ModuleNotFoundError: aucun module nommé" azure "" lors de l'exécution d'un programme à l'aide du SDK Azure pour Python
Liste des erreurs Python (japonais)
Une histoire à propos d'un débutant en Python qui était sur le point d'être écrasé par ModuleNotFoundError: Aucun module nommé 'weepy'
Que faire lorsque swagger-codegen est terminé avec python et Erreur d'importation: aucun module nommé n'apparaît
[Python] pour une erreur d'instruction
Une histoire à propos d'un débutant en python coincé avec aucun module nommé'ttp.server '