Skip to content

Update Python package installation instructions #2235

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Specify the dependency in the project `build.gradle` file as `testImplementation
{{% /tab %}}
{{% tab header="Python" %}}
The minimum supported Python version for each Selenium version can be found
in `Supported Python Versions` on [PyPi](https://pypi.org/project/selenium/)
in "Supported Python Versions" on [PyPi](https://pypi.org/project/selenium/).

There are a couple different ways to install Selenium.

Expand All @@ -50,11 +50,11 @@ pip install selenium

### Download

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

```shell
python setup.py install
pip install selenium-x.x.x.-py3-none-any.whl
```
<br>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ pip install selenium
### ダウンロード

または、ダウンロードすることもできます[PyPI ソースアーカイブ](https://pypi.org/project/selenium/#files)
(selenium-x.x.x.tar.gz) を使用してインストールします _setup.py_
(selenium-x.x.x.-py3-none-any.whl) を使用してインストールします _pip_:

```shell
python setup.py install
pip install selenium-x.x.x.-py3-none-any.whl
```
<br>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Especifique a dependência no `build.gradle` do seu projeto como `testImplementa
{{% /tab %}}
{{% tab header="Python" %}}
A mínima versão suportada do Python para cada versão do Selenium pode ser encontrada
em `Supported Python Versions` no [PyPi](https://pypi.org/project/selenium/)
em "Supported Python Versions" no [PyPi](https://pypi.org/project/selenium/).

Existe muitas formas diferentes de instalar Selenium.

Expand All @@ -51,10 +51,10 @@ pip install selenium
### Download

Como uma alternativa você pode baixar o [código fonte PyPI](https://pypi.org/project/selenium/#files)
(selenium-x.x.x.tar.gz) e instalar usando _setup.py_:
(selenium-x.x.x.-py3-none-any.whl) e instalar usando _pip_:

```shell
python setup.py install
pip install selenium-x.x.x.-py3-none-any.whl
```
<br>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ pip install selenium

### 下载

此外你可以从这里下载 [PyPI source archive](https://pypi.org/project/selenium/#files)
(selenium-x.x.x.tar.gz) 并通过: _setup.py_ 文件安装:
此外你可以从这里下载 [PyPI Built Distribution](https://pypi.org/project/selenium/#files)
(selenium-x.x.x.-py3-none-any.whl) 并通过: _pip_ 文件安装:

```shell
python setup.py install
pip install selenium-x.x.x.-py3-none-any.whl
```
<br>

Expand Down
Loading