Install SeleniumBase
Installation
If installing SeleniumBase directly from PyPI, (the Python Package Index), use:
pip install seleniumbase
To upgrade an existing seleniumbase
install from PyPI:
pip install -U seleniumbase
If installing SeleniumBase from a Git clone, use:
git clone https://github.com/seleniumbase/SeleniumBase.git
cd SeleniumBase/
pip install .
For a development mode install in editable mode, use:
git clone https://github.com/seleniumbase/SeleniumBase.git
cd SeleniumBase/
pip install -e .
To upgrade an existing seleniumbase
install from GitHub:
git pull # To pull the latest version
pip install -e . # Or "pip install ."
If installing SeleniumBase from a GitHub branch, use:
pip install git+https://github.com/seleniumbase/SeleniumBase.git@master#egg=seleniumbase
pip install
can be customized:
(Add
--upgrade
OR-U
to upgrade an installation.) (Add--force-reinstall
to upgrade dependencies.) (Add--index-url=http://pypi.python.org/simple/
if blocked by a VPN.) (Usepip3
if multiple versions of Python are installed.)
(If you're not using a virtual environment, you may need to add --user
to your pip
command if you're seeing errors during installation.)