diff --git a/docs/src/intro-python.md b/docs/src/intro-python.md
index 8edb444eadd3e..dc4c7b9885b60 100644
--- a/docs/src/intro-python.md
+++ b/docs/src/intro-python.md
@@ -21,36 +21,12 @@ Playwright recommends using the official [Playwright Pytest plugin](./test-runne
Get started by installing Playwright and running the example test to see it in action.
-
-
-
Install the [Pytest plugin](https://pypi.org/project/pytest-playwright/):
```bash
pip install pytest-playwright
```
-
-
-
-Install the [Pytest plugin](https://anaconda.org/Microsoft/pytest-playwright):
-
-```bash
-conda config --add channels conda-forge
-conda config --add channels microsoft
-conda install pytest-playwright
-```
-
-
-
-
Install the required browsers:
```bash
diff --git a/docs/src/library-python.md b/docs/src/library-python.md
index a3702962b0561..bd78b01576f39 100644
--- a/docs/src/library-python.md
+++ b/docs/src/library-python.md
@@ -5,8 +5,6 @@ title: "Getting started - Library"
## Installation
-### Pip
-
[
](https://pypi.python.org/pypi/playwright/)
```bash
@@ -15,17 +13,6 @@ pip install playwright
playwright install
```
-### Conda
-
-[
](https://anaconda.org/Microsoft/playwright)
-
-```bash
-conda config --add channels conda-forge
-conda config --add channels microsoft
-conda install playwright
-playwright install
-```
-
These commands download the Playwright package and install browser binaries for Chromium, Firefox and WebKit. To modify this behavior see [installation parameters](./browsers.md#install-browsers).
## Usage