Skip to content

Commit a111de0

Browse files
committed
Update the docs
1 parent 080f4a8 commit a111de0

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

docs/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
regex>=2021.9.30
1+
regex>=2021.10.8
22
tqdm>=4.62.3
33
livereload==2.6.3;python_version>="3.6"
44
joblib==1.1.0;python_version>="3.6"
@@ -10,7 +10,7 @@ python-dateutil==2.8.2
1010
keyring==23.2.1;python_version>="3.6"
1111
pkginfo==1.7.1;python_version>="3.6"
1212
Jinja2==3.0.2;python_version>="3.6"
13-
click==8.0.1;python_version>="3.6"
13+
click==8.0.2;python_version>="3.6"
1414
zipp==3.6.0;python_version>="3.6"
1515
readme-renderer==30.0
1616
pymdown-extensions==9.0;python_version>="3.6"

help_docs/install_python_pip_git.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,33 +24,40 @@ pip install -U setuptools
2424
If that didn't work, here are some more commands you can try:
2525

2626
On macOS / Windows / Linux, run the following command:
27+
2728
```bash
2829
python -m ensurepip --default-pip
2930
```
3031

3132
If your existing version of pip is old, upgrade to the latest version:
33+
3234
```bash
3335
python -m pip install --upgrade pip setuptools
3436
```
3537

3638
On CentOS 7 and some versions of Linux, you may need to install pip with ``yum``:
39+
3740
```bash
3841
yum -y update
3942
yum -y install python-pip
4043
```
4144

42-
If you're having any trouble getting pip, you can [GET PIP HERE](https://pip.pypa.io/en/latest/installing/).
45+
If you're having any trouble getting pip, you can [GET PIP HERE](https://pip.pypa.io/en/latest/installation/).
4346

4447
When done, make sure the location of pip is on your path, which is ``$PATH`` for macOS/Linux. (On Windows, it's the System Variables ``Path`` within System Environment Variables.)
4548

4649
You can also get pip (or fix pip) by using:
50+
4751
```bash
4852
curl https://bootstrap.pypa.io/get-pip.py | python
4953
```
54+
5055
* (If you get SSL errors while trying to install packages with pip, see [this Stackoverflow post](https://stackoverflow.com/questions/49768770/not-able-to-install-python-packages-ssl-tlsv1-alert-protocol-version), which tells you to run the above command.)
5156

5257
**Keep Pip and Setuptools up-to-date:**
53-
```
58+
59+
```bash
5460
python -m pip install -U pip setuptools
5561
```
62+
5663
* (Depending on your user permissions, you may need to add ``--user`` to the command if you're not inside a [Python virtual environment](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/virtualenv_instructions.md), or use "[sudo](https://en.wikipedia.org/wiki/Sudo)" on a UNIX-based OS if you're getting errors during installation.)

seleniumbase/console_scripts/ReadMe.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ test frameworks.
8686

8787
```bash
8888
ui_tests/
89-
9089
├── __init__.py
9190
├── my_first_test.py
9291
├── parameterized_test.py
@@ -95,15 +94,13 @@ ui_tests/
9594
├── setup.cfg
9695
├── test_demo_site.py
9796
└── boilerplates/
98-
9997
├── __init__.py
10098
├── base_test_case.py
10199
├── boilerplate_test.py
102100
├── classic_obj_test.py
103101
├── page_objects.py
104102
├── sb_fixture_test.py
105103
└── samples/
106-
107104
├── __init__.py
108105
├── google_objects.py
109106
├── google_test.py
@@ -115,7 +112,6 @@ If running with the ``-b`` or ``--basic`` option:
115112

116113
```bash
117114
ui_tests/
118-
119115
├── __init__.py
120116
├── pytest.ini
121117
├── requirements.txt

0 commit comments

Comments
 (0)