Remix.run Logo
stavros 5 hours ago

I can run `uvx sometool` without fear because I know that it'll take a few seconds to create a venv, download all the dependencies, and run the tool. uv's speed has literally changed how I work with Python.

quectophoton 3 hours ago | parent [-]

I wouldn't say without fear, since you're one typo away from executing a typo-squatted malicious package.

I do use it on CI/CD pipelines, but I wouldn't dare type uvx commands myself on a daily basis.

stavros 3 hours ago | parent [-]

uvx isn't more risky than `pip install`, which is what I used before.