uv icon indicating copy to clipboard operation
uv copied to clipboard

An extremely fast Python package and project manager, written in Rust.

Results 1851 uv issues
Sort by recently updated
recently updated
newest added

It seems like we should probably stub `uv` into the environment by default so that you can use `python -m uv`. I'm not exactly sure what that would look like....

enhancement
needs-design
virtualenv

I'm trying to install airflow 2.4.2 with the constraints file provided by airflow ([file](https://raw.githubusercontent.com/invent-analytics/airflow-constraints/main/2.4.2/constraints-3.8.txt)) with the following command (I have downloaded the file): `uv pip install apache-airflow==2.42 -c airflow-constraints.txt --verbose`...

bug
resolver

I often create venvs for multiple Python versions, `--python-version=3.7` is just too long, consider (additional) shorter options: ```shell --3.7 --py=3.7 --python=3.7 ```

enhancement

`uv venv` will not install seed packages like `pip` by default. We may want to consider showing a hint that says this is skipped for now since people usually get...

enhancement
compatibility
virtualenv

``` ❯ uv venv --seed Using Python 3.11.7 interpreter at /opt/homebrew/opt/[email protected]/bin/python3.11 Creating virtualenv at: .venv + setuptools==69.1.0 + pip==24.0 + wheel==0.42.0 ``` Should we suggest that we're seeding the environment?

enhancement
virtualenv

``` ❯ uv venv Using Python 3.11.7 interpreter at /opt/homebrew/opt/[email protected]/bin/python3.11 Creating virtualenv at: .venv ❯ source .venv/bin/activate ``` We should prompt activation

enhancement
virtualenv

Not sure whether title is "correct" here, but it presents that way. Alembic is illustrative here, I've also had this occur with `psycogreen`, `psycopg2cffi`, `flask-migrate`, `docopt` (this is a non-exhaustive...

bug
virtualenv
pypy

I was wondering if uv venv could get support for the [venv --system-site-packages](https://docs.python.org/3/library/venv.html) option. We have virtual environments that use system installed packages for some of the more complex geospatial...

enhancement
compatibility
virtualenv

I think it's more logical to automatically install pip in the newly created environments by `uv venv` so that the user can immediately have access to pip within the new...

configuration
virtualenv

Hi, When I try to create a virtualenv from a Python Embedded version on Windows I get the following error: ```cmd Using Python 3.7.9 interpreter at C:\Users\alex\Documents\Python\python-3.7.9-embed-amd64\python.exe Creating virtualenv at:...

bug
windows
virtualenv