Skip to content

Commit d707552

Browse files
committed
Update the install ReadMe
1 parent 20f2837 commit d707552

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

help_docs/install.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,24 @@
22

33
If you're installing SeleniumBase from a cloned copy on your machine, use:
44
```
5-
pip install -r requirements.txt
5+
pip install -U -r requirements.txt
66
77
python setup.py develop
88
```
99

10-
If you're installing SeleniumBase from the [Python Package Index](https://pypi.python.org/pypi/seleniumbase), use:
10+
If you're installing SeleniumBase directly [from PyPI (the Python Package Index)](https://pypi.python.org/pypi/seleniumbase), use:
1111
```bash
12-
pip install seleniumbase
12+
pip install -U seleniumbase
1313
```
1414

15-
If you're installing SeleniumBase directly from GitHub, use:
15+
If you're installing SeleniumBase directly [from GitHub](https://github.com/seleniumbase/SeleniumBase), use:
1616
```bash
17-
pip install -e git+https://github.com/seleniumbase/SeleniumBase.git@master#egg=seleniumbase
17+
pip install -U -e git+https://github.com/seleniumbase/SeleniumBase.git@master#egg=seleniumbase
1818
```
1919

20-
(If you already have an older version installed, you may want to add ``--upgrade`` to your ``pip`` command to update existing Python packages. If you're not using a virtual environment, you may need to add ``--user`` to your ``pip`` command if you're getting errors during installation.)
20+
If you're installing SeleniumBase directly [from Anaconda Cloud](https://anaconda.org/seleniumbase/dashboard), use:
21+
```bash
22+
pip install -U -i https://pypi.anaconda.org/seleniumbase/simple seleniumbase
23+
```
2124

22-
(If you want to use Python 3.x instead of Python 2.7, use ``pip3`` in place of ``pip`` and ``python3`` in place of ``python``.)
25+
(If you're not using a virtual environment, you may need to add ``--user`` to your ``pip`` command if you're getting errors during installation.)

0 commit comments

Comments
 (0)