Skip to content

Commit 64665de

Browse files
committed
Update the docs
1 parent 650da9d commit 64665de

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,13 @@ pip install -e . # Editable install
7878

7979
> (When using a virtual env, the Editable install is faster.)
8080
81+
To upgrade an existing install from a GitHub clone:
82+
83+
```bash
84+
git pull # To pull the latest version
85+
pip install -e . # Or "pip install ."
86+
```
87+
8188
🔵 Installing ``seleniumbase`` from PyPI:
8289

8390
```bash
@@ -88,6 +95,12 @@ pip install seleniumbase
8895
> (Add ``--force-reinstall`` to also install the latest dependencies.)
8996
> (Use ``pip3`` if multiple versions of Python are installed.)
9097
98+
To upgrade an existing install from PyPI:
99+
100+
```bash
101+
pip install -U seleniumbase
102+
```
103+
91104
🔵 Type ``seleniumbase`` or ``sbase`` to verify that SeleniumBase was installed successfully:
92105

93106
```bash

help_docs/install.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
pip install seleniumbase
99
```
1010

11+
To upgrade an existing ``seleniumbase`` install from PyPI:
12+
13+
```bash
14+
pip install -U seleniumbase
15+
```
16+
1117
<h4>If installing SeleniumBase from a Git clone, use:</h4>
1218

1319
```bash
@@ -24,6 +30,13 @@ cd SeleniumBase/
2430
pip install -e .
2531
```
2632

33+
To upgrade an existing ``seleniumbase`` install from GitHub:
34+
35+
```bash
36+
git pull # To pull the latest version
37+
pip install -e . # Or "pip install ."
38+
```
39+
2740
<h4>If installing SeleniumBase from a <a href="https://github.com/seleniumbase/SeleniumBase">GitHub branch</a>, use:</h4>
2841

2942
```bash

0 commit comments

Comments
 (0)