You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, if you run uvx python, it can fail. Even uvx -p 3.11 python will fail to start a Python shell on Windows or Ubuntu because the command doesn't map to a python executable.
However, uv run pythonworks, no matter where you execute it.
It's counter-intuitive, one would expect you can run the installed you installed with uv from uvx.
What's more, it would be a useful feature to be able to do uvx -p 3.12 --with pendulum python to test how this lib works in python 3.12 quickly.
Right now, one has to do uvx -p 3.12 --with pendulum ipython which is fine if you are familiar with the Python ecosystem and uv limitations, but probably not for beginners, for whom uv is the biggest boon.
The text was updated successfully, but these errors were encountered:
Right now, if you run
uvx python
, it can fail. Evenuvx -p 3.11 python
will fail to start a Python shell on Windows or Ubuntu because the command doesn't map to a python executable.However,
uv run python
works, no matter where you execute it.It's counter-intuitive, one would expect you can run the installed you installed with uv from uvx.
What's more, it would be a useful feature to be able to do
uvx -p 3.12 --with pendulum python
to test how this lib works in python 3.12 quickly.Right now, one has to do
uvx -p 3.12 --with pendulum ipython
which is fine if you are familiar with the Python ecosystem anduv
limitations, but probably not for beginners, for whomuv
is the biggest boon.The text was updated successfully, but these errors were encountered: