Skip to content

Commit

Permalink
Add note about workaround for editable user installs via pip.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasongrout committed Jan 27, 2022
1 parent 1b1a49d commit 2034ac5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/source/dev_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ cd ipywidgets
./dev-install.sh
```

### Installing with pip

To do an editable install of the python ipywidgets package into the user site directory with pip, please use

```bash
pip install --prefix=$(python -m site --user-base) -e .
```
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.

Rebuilding after making changes
----------------------------

Expand Down

0 comments on commit 2034ac5

Please sign in to comment.