Python: ningún módulo llamado selenio

Resuelto Jordan asked hace 6 años • 4 respuestas

Después de buscar en la web durante horas todavía no encontré una respuesta a mi problema. Estoy usando Python 3.6 y no puedo importar selenio. Siempre recibo el mensaje "No hay ningún módulo llamado 'selenio'. Intenté todo, primero descargué selenio de este sitio web https://pypi.python.org/pypi/selenium/3.6.0 .

Luego probé python -m pip install -U selenium y tampoco funcionó. Intenté algunas otras cosas que la gente decía pero tampoco funcionaron. Estoy usando Windows 10. ¿Alguna ayuda?

Jordan avatar Jan 16 '18 00:01 Jordan
Aceptado

Como mencionaste estás using Python 3.6siguiendo los pasos:

  • Abra Command Line Interface( CLI) y ejecute el comando pythonpara verificar si Python está instalado correctamente:

    C:\Users\username>python
    Python 3.6.1 (v3.6.1:69c0db5, Jan 16 2018, 17:54:52) [MSC v.1900 32 bit (Intel)]
     on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>>
    
  • Asegúrese pipde que funcione correctamente:

    C:\Users\username>pip
    
    Usage:
      pip <command> [options]
    
    Commands:
      install                     Install packages.
      download                    Download packages.
      uninstall                   Uninstall packages.
      freeze                      Output installed packages in requirements format.
      list                        List installed packages.
      show                        Show information about installed packages.
      check                       Verify installed packages have compatible dependencies.
      search                      Search PyPI for packages.
      wheel                       Build wheels from your requirements.
      hash                        Compute hashes of package archives.
      completion                  A helper command used for command completion.
      help                        Show help for commands.
    
    General Options:
      -h, --help                  Show help.
      --isolated                  Run pip in an isolated mode, ignoring environment variables and user configuration.
      -v, --verbose               Give more output. Option is additive, and can be used up to 3 times.
      -V, --version               Show version and exit.
      -q, --quiet                 Give less output. Option is additive, and can be used up to 3 times (corresponding to WARNING, ERROR, and CRITICAL logging levels).
      --log <path>                Path to a verbose appending log.
      --proxy <proxy>             Specify a proxy in the form [user:passwd@]proxy.server:port.
      --retries <retries>         Maximum number of retries each connection should attempt (default 5 times).
      --timeout <sec>             Set the socket timeout (default 15 seconds).
      --exists-action <action>    Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.
      --trusted-host <hostname>   Mark this host as trusted, even though it does not have valid or any HTTPS.
      --cert <path>               Path to alternate CA bundle.
      --client-cert <path>        Path to SSL client certificate, a single file containing the private key and the certificate in PEM format.
      --cache-dir <dir>           Store the cache data in <dir>.
      --no-cache-dir              Disable the cache.
      --disable-pip-version-check
                                  Don't periodically check PyPI to determine
                                  whether a new version of pip is available for
                          download. Implied with --no-index.
    
  • Instale la última versión seleniuma través de pip:

    C:\Users\username>pip install -U selenium
    Collecting selenium
      Downloading selenium-3.8.1-py2.py3-none-any.whl (931kB)
        100% |¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦| 942kB 322kB/s
    Installing collected packages: selenium
    Successfully installed selenium-3.8.1
    
  • Confirma que Seleniumestá instalado:

    C:\Users\username>pip freeze
    selenium==3.8.1 
    
  • Abra un IDE(por ejemplo Eclipse, PyCharm) y escriba un programa simple de la siguiente manera:

    from selenium import webdriver
    
    driver = webdriver.Firefox(executable_path="C:\\path\\to\\geckodriver.exe")
    driver.get('https://stackoverflow.com')
    
  • Ejecute el programa en el que Firefox Quantumse iniciará el navegador y se url https://stackoverflow.comaccederá a él.


Ubicación de descarga de Python (Windows):

Python (para Windows) se puede descargar desde la siguiente ubicación:

https://www.python.org/downloads/
undetected Selenium avatar Jan 15 '2018 19:01 undetected Selenium

Estoy en VS Code en Windows 10 y así es como lo resolví.

Debes prestar atención a dónde se encuentra Python (en mi caso),

1) C:\Users\_Me_\AppData\Local\Programs\Python\Python38\ 

y donde Python busca bibliotecas/paquetes , incluidos los instalados usando pip (nuevamente, en mi caso),

2) C:\Users\_Me_\AppData\Roaming\Python\Python38\

No sé por qué estas dos ubicaciones son diferentes (tengo que solucionarlo en algún momento). ¡Parecía que Python se estaba ejecutando desde la primera ubicación, pero estaba buscando bibliotecas en la segunda!:/

De todos modos, como tengo experiencia limitada en Python, simplemente copié \Lib\site-packagesdesde la primera ubicación (incluidas las carpetas de selenio) a \site-packagesla segunda con la esperanza de resolver el problema, ¡lo cual funcionó para mí!

Cómo comprobar sus ubicaciones

1) Abra la CLI de Python y escriba el siguiente comando:

which python

2) Abra la CLI de Python, escriba los siguientes comandos (de esta respuesta ):

>>> import site
>>> site.USER_SITE

EDITAR

Como esto parece una solución temporal, desinstalé Python y lo reinstalé nuevamente en un directorio adecuado (que no sea el directorio de instalación predeterminado), ¡y ahora which pythonapunto which pipa la misma carpeta! ¡Problema resuelto!

khalifmahdi avatar May 11 '2020 21:05 khalifmahdi