File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,13 @@ pip install -e . # Editable install
78
78
79
79
> (When using a virtual env, the Editable install is faster.)
80
80
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
+
81
88
🔵 Installing `` seleniumbase `` from PyPI:
82
89
83
90
``` bash
@@ -88,6 +95,12 @@ pip install seleniumbase
88
95
> (Add `` --force-reinstall `` to also install the latest dependencies.)
89
96
> (Use `` pip3 `` if multiple versions of Python are installed.)
90
97
98
+ To upgrade an existing install from PyPI:
99
+
100
+ ``` bash
101
+ pip install -U seleniumbase
102
+ ```
103
+
91
104
🔵 Type `` seleniumbase `` or `` sbase `` to verify that SeleniumBase was installed successfully:
92
105
93
106
``` bash
Original file line number Diff line number Diff line change 8
8
pip install seleniumbase
9
9
```
10
10
11
+ To upgrade an existing `` seleniumbase `` install from PyPI:
12
+
13
+ ``` bash
14
+ pip install -U seleniumbase
15
+ ```
16
+
11
17
<h4 >If installing SeleniumBase from a Git clone, use:</h4 >
12
18
13
19
``` bash
@@ -24,6 +30,13 @@ cd SeleniumBase/
24
30
pip install -e .
25
31
```
26
32
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
+
27
40
<h4 >If installing SeleniumBase from a <a href =" https://github.com/seleniumbase/SeleniumBase " >GitHub branch</a >, use:</h4 >
28
41
29
42
``` bash
You can’t perform that action at this time.
0 commit comments