Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install selenium-stealth via python pip




selenium-stealth - Trying to make python selenium more stealthy., it belongs to Classifiers:

- Environment :: Console
- Environment :: MacOS X
- Environment :: Web Environment
- Environment :: Win32 (MS Windows)
- Framework :: Pytest
- Intended Audience :: Information Technology
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Topic :: Internet
- Topic :: Scientific/Engineering
- Topic :: Software Development :: Quality Assurance
- Topic :: Software Development :: Testing
- Topic :: Software Development :: Testing :: Acceptance
- Topic :: Software Development :: Testing :: Traffic Generation
- Topic :: Utilities

When you know about this project and you want to new install selenium-stealth to support your project or you get trouble as ModuleNotFoundError: No module named "selenium-stealth" or ImportError: cannot import name "selenium-stealth" in your project, let follow this tutorial to install selenium-stealth



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_selenium-stealth_env

- Active the virtual environment

test_selenium-stealth_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_selenium-stealth_env

- Active the virtual environment

source test_selenium-stealth_env/bin/active


Step 2: OK, now, let flow below content to start the installation selenium-stealth

To install selenium-stealth on Windows(CMD):

py -m pip install selenium-stealth

To install selenium-stealth on Unix/macOs:

pip install selenium-stealth


Step 3: If you want to install a specific selenium-stealth version, add ==<selenium-stealth version> to the end command line

Example:

pip install selenium-stealth==1.0.0


Please see the version list below table:

VersionReleased dateCommand
selenium-stealth 1.0.62020-11-05T15:26:05Windows:

py -m pip install selenium-stealth==1.0.6

Unix/macOs:

pip install selenium-stealth==1.0.6

selenium-stealth 1.0.52020-11-03T15:19:37Windows:

py -m pip install selenium-stealth==1.0.5

Unix/macOs:

pip install selenium-stealth==1.0.5

selenium-stealth 1.0.42020-11-03T15:12:40Windows:

py -m pip install selenium-stealth==1.0.4

Unix/macOs:

pip install selenium-stealth==1.0.4

selenium-stealth 1.0.32020-11-03T14:38:50Windows:

py -m pip install selenium-stealth==1.0.3

Unix/macOs:

pip install selenium-stealth==1.0.3

selenium-stealth 1.0.22020-11-03T14:00:26Windows:

py -m pip install selenium-stealth==1.0.2

Unix/macOs:

pip install selenium-stealth==1.0.2

selenium-stealth 1.0.12020-11-03T13:00:20Windows:

py -m pip install selenium-stealth==1.0.1

Unix/macOs:

pip install selenium-stealth==1.0.1

selenium-stealth 1.0.02020-11-02T23:22:16Windows:

py -m pip install selenium-stealth==1.0.0

Unix/macOs:

pip install selenium-stealth==1.0.0


Step 4: Otherwise, you can install selenium-stealth from local archives:

Download the distribution file from selenium_stealth-1.0.6-py3-none-any.whl or the specific selenium-stealth version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_selenium-stealth_downloaded_file>

On Unix/macOs:

pip install <path_to_selenium-stealth_downloaded_file>


List distribution:


Project link:

- Homepage