Skip to content

Commit aa97671

Browse files
authored
Merge pull request #155 from seleniumbase/minor-update
Minor update
2 parents 5079d79 + 7323e0e commit aa97671

File tree

3 files changed

+15
-12
lines changed

3 files changed

+15
-12
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.)

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
pip>=9.0.3
2-
setuptools>=39.0.1
1+
pip
2+
setuptools
33
ipython==5.5.0
44
selenium==3.8.1
55
nose==1.3.7

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='seleniumbase',
10-
version='1.8.2',
10+
version='1.8.3',
1111
description='Web Automation & Testing Framework - http://seleniumbase.com',
1212
long_description='Web Automation and Testing Framework - seleniumbase.com',
1313
platforms='Mac * Windows * Linux * Docker',
@@ -17,8 +17,8 @@
1717
maintainer='Michael Mintz',
1818
license='The MIT License',
1919
install_requires=[
20-
'pip>=9.0.3',
21-
'setuptools>=39.0.1',
20+
'pip',
21+
'setuptools',
2222
'ipython==5.5.0',
2323
'selenium==3.8.1',
2424
'nose==1.3.7',

0 commit comments

Comments
 (0)