Nemanja Radojković

Results 5 comments of Nemanja Radojković

I have a similar problem when trying to use `uv pip compile`: ![image](https://github.com/astral-sh/uv/assets/7703701/db46cf10-25bd-4f27-a541-399bba7c210c) In `pyproject.toml` I have the `+cpu` dependencies specifed, and they are available on our internal Artifactory (installation...

So. - `uv pip install torch==2.1.1+cpu` => works 🟢 - `uv pip install -e .` (where the local project has `torch==2.1.1+cpu` as a dependency) => fails. 🔴 - `uv pip...

Ok, found a workaround(?), using the `--override` option: I created the `overrides.txt` file with the following content ``` # overrides.txt torch==2.1.1+cpu torchvision==0.16.1+cpu ``` Then called: `uv pip compile pyproject.toml -o...

@Kludex , have you tried actually running the app and making a request to the endpoint of the subapp? I have recently also struggled with a very similar setup, where...

It would be really nice to have this implemented...