We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49823a2 commit 6a235e8Copy full SHA for 6a235e8
1 file changed
{{cookiecutter.package_name}}/README.md
@@ -2,4 +2,14 @@
2
3
{{cookiecutter.description}}
4
5
-## Installation
+## Installation
6
+
7
+I recommend using [uv](https://docs.astral.sh/uv/) to manage the python version, virtual environment and `{{cookiecutter.package_name}}` installation:
8
9
+```bash
10
+uv venv --python 3.13
11
+source .venv/bin/activate
12
+uv pip install {{cookiecutter.package_name}}
13
+# Install Chromium browser binary required for playwright.
14
+playwright install chromium
15
+```
0 commit comments