From 9e6e8c9dfc00330dacf6bbc4a8282bc3f678874c Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Mon, 8 Jun 2026 13:19:30 +0200 Subject: [PATCH] docs(python): drop Conda distribution Conda packages for Playwright are no longer published, so remove the Conda/Anaconda installation instructions from the Python docs. See https://github.com/microsoft/playwright-python/pull/3091 --- docs/src/intro-python.md | 24 ------------------------ docs/src/library-python.md | 13 ------------- 2 files changed, 37 deletions(-) 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 - [PyPI version](https://pypi.python.org/pypi/playwright/) ```bash @@ -15,17 +13,6 @@ pip install playwright playwright install ``` -### Conda - -[Anaconda version](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