This example reproduces errors we see when trying to use uv to install our Poetry monorepo.
The following preconditions must be met as prerequisites:
- be running python 3.11
- have pip installed
- have uv installed
- Run
./install-pip.sh
- this will create a venv at./venv
and will install the local./app
package withpip install -e
. - Run
./install-uv.sh
- this will create a venv with uv at./.venv
and will try to install the local./app
package withuv pip install -e
.