2021-01-01 15:17:27 -08:00
---
id: installation
2021-01-11 09:34:49 -08:00
title: "Installation"
2021-01-01 15:17:27 -08:00
---
2020-12-30 18:04:51 -08:00
2021-01-01 15:17:27 -08:00
<!-- TOC -->
2020-12-30 18:04:51 -08:00
## Managing browser binaries
Each version of Playwright needs specific versions of browser binaries to operate. By default Playwright downloads Chromium, WebKit and Firefox browsers into the OS-specific cache folders:
- `%USERPROFILE%\AppData\Local\ms-playwright` on Windows
- `~/Library/Caches/ms-playwright` on MacOS
- `~/.cache/ms-playwright` on Linux
```sh
2021-01-16 06:42:40 -08:00
$ pip install playwright
$ python -m playwright install
2020-12-30 18:04:51 -08:00
```
These browsers will take few hundreds of megabytes of the disk space when installed:
```sh
2021-01-16 06:42:40 -08:00
$ du -hs ./Library/Caches/ms-playwright/*
2020-12-30 18:04:51 -08:00
281M chromium-XXXXXX
187M firefox-XXXX
180M webkit-XXXX
```
You can override default behavior using environment variables. When installing Playwright, ask it to download browsers into a specific location:
```sh
# Linux/macOS
2021-01-16 06:42:40 -08:00
$ pip install playwright
$ PLAYWRIGHT_BROWSERS_PATH=$HOME/pw-browsers python -m playwright install
2020-12-30 18:04:51 -08:00
# Windows
$ set PLAYWRIGHT_BROWSERS_PATH=%USERPROFILE%\pw-browsers
2021-01-16 06:42:40 -08:00
$ pip install playwright
$ python -m playwright install
2020-12-30 18:04:51 -08:00
```
When running Playwright scripts, ask it to search for browsers in a shared location:
```sh
# Linux/macOS
2021-01-16 06:42:40 -08:00
$ PLAYWRIGHT_BROWSERS_PATH=$HOME/pw-browsers python playwright_script.js
2020-12-30 18:04:51 -08:00
# Windows
$ set PLAYWRIGHT_BROWSERS_PATH=%USERPROFILE%\pw-browsers
2021-01-16 06:42:40 -08:00
$ python playwright_script.py
2020-12-30 18:04:51 -08:00
```
2021-01-16 06:42:40 -08:00
Or you can opt into the hermetic install and place binaries under the `site-packages/playwright` folder:
2020-12-30 18:04:51 -08:00
```sh
# Linux/macOS
2021-01-16 06:42:40 -08:00
$ pip install playwright
$ PLAYWRIGHT_BROWSERS_PATH=0 python -m playwright install
2020-12-30 18:04:51 -08:00
# Windows
$ set PLAYWRIGHT_BROWSERS_PATH=0
2021-01-16 06:42:40 -08:00
$ pip install playwright
$ python -m playwright install
2020-12-30 18:04:51 -08:00
```
Playwright keeps track of packages that need those browsers and will garbage collect them as you update Playwright to the newer versions.
2021-01-12 12:14:27 -08:00
:::note
Developers can opt-in in this mode via exporting `PLAYWRIGHT_BROWSERS_PATH=$HOME/pw-browsers` in their `.bashrc` .
:::
2020-12-30 18:04:51 -08:00
## Download from artifact repository
By default, Playwright downloads browsers from Microsoft and Google public CDNs.
Sometimes companies maintain an internal artifact repository to host browser
binaries. In this case, Playwright can be configured to download from a custom
location using the `PLAYWRIGHT_DOWNLOAD_HOST` env variable.
```sh
# Linux/macOS
2021-01-16 06:42:40 -08:00
$ pip install playwright
$ PLAYWRIGHT_DOWNLOAD_HOST=192.168.1.78 python -m playwright install
2020-12-30 18:04:51 -08:00
# Windows
$ set PLAYWRIGHT_DOWNLOAD_HOST=192.168.1.78
2021-01-16 06:42:40 -08:00
$ pip install playwright
$ python -m playwright install
2020-12-30 18:04:51 -08:00
```
It is also possible to use a per-browser download hosts using `PLAYWRIGHT_CHROMIUM_DOWNLOAD_HOST` , `PLAYWRIGHT_FIREFOX_DOWNLOAD_HOST` and `PLAYWRIGHT_WEBKIT_DOWNLOAD_HOST` env variables that
take precedence over `PLAYWRIGHT_DOWNLOAD_HOST` .
```sh
# Linux/macOS
2021-01-16 06:42:40 -08:00
$ pip install playwright
$ PLAYWRIGHT_FIREFOX_DOWNLOAD_HOST=192.168.1.1 PLAYWRIGHT_DOWNLOAD_HOST=192.168.1.78 python -m playwright install
2020-12-30 18:04:51 -08:00
```
## Skip browser downloads
In certain cases, it is desired to avoid browser downloads altogether because
browser binaries are managed separately.
This can be done by setting `PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD` variable before installation.
```sh
# Linux/macOS
2021-01-16 06:42:40 -08:00
$ pip install playwright
$ PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 python -m playwright install
2020-12-30 18:04:51 -08:00
# Windows
$ set PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
2021-01-16 06:42:40 -08:00
$ pip install playwright
$ python -m playwright install
2020-12-30 18:04:51 -08:00
```
## Download single browser binary
2021-01-16 06:42:40 -08:00
Playwright downloads Chromium, Firefox and WebKit browsers by default. To install a specific browser, pass it as an argument during installation.
2020-12-30 18:04:51 -08:00
```sh
2021-01-16 06:42:40 -08:00
$ pip install playwright
$ python -m playwright install firefox
2020-12-30 18:04:51 -08:00
```