Skip to content

Commit 50994d5

Browse files
committed
Update Python package installation instructions
1 parent 0e7df55 commit 50994d5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

examples/python/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
selenium==4.29.0
1+
selenium==4.30.0
22
pytest==8.3.5
33
trio==0.29.0
44
pytest-trio==0.8.0

website_and_docs/content/documentation/webdriver/getting_started/install_library.en.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Specify the dependency in the project `build.gradle` file as `testImplementation
3737
{{% /tab %}}
3838
{{% tab header="Python" %}}
3939
The minimum supported Python version for each Selenium version can be found
40-
in `Supported Python Versions` on [PyPi](https://pypi.org/project/selenium/)
40+
in "Supported Python Versions" on [PyPi](https://pypi.org/project/selenium/).
4141

4242
There are a couple different ways to install Selenium.
4343

@@ -50,11 +50,11 @@ pip install selenium
5050

5151
### Download
5252

53-
Alternatively you can download the [PyPI source archive](https://pypi.org/project/selenium/#files)
54-
(selenium-x.x.x.tar.gz) and install it using _setup.py_:
53+
Alternatively you can download the [PyPI Built Distribution](https://pypi.org/project/selenium/#files)
54+
(selenium-x.x.x.-py3-none-any.whl) and install it using _pip_:
5555

5656
```shell
57-
python setup.py install
57+
pip install selenium-x.x.x.-py3-none-any.whl
5858
```
5959
<br>
6060

0 commit comments

Comments
 (0)