We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6456032 + 2034ac5 commit 29b58eaCopy full SHA for 29b58ea
docs/source/dev_install.md
@@ -29,6 +29,15 @@ cd ipywidgets
29
./dev-install.sh
30
```
31
32
+### Installing with pip
33
+
34
+To do an editable install of the python ipywidgets package into the user site directory with pip, please use
35
36
+```bash
37
+pip install --prefix=$(python -m site --user-base) -e .
38
+```
39
+Using `pip install --user -e .` will not work due to a bug in pip. See https://github.com/pypa/pip/issues/7953 for more details.
40
41
Rebuilding after making changes
42
----------------------------
43
0 commit comments