you are viewing a single comment's thread
view the rest of the comments
[–] 5 points 1 year ago (1 child)

Yeah, not trying to dunk on other commenter, but these don't sound like complaints I experience with Python at all. Setting up the environment is a breeze with venv, package installation couldn't be easier with basic pip, and I really like having a diverse ecosystem of multiple (often high quality) approaches to solving similar problems.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 5 points 1 year ago (1 child)

    Have you heard about uv? I'm loving it.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 1 point 1 year ago (2 children)

    Yeah I've been hearing about it and meaning to dive in. Been learning some infra stuff lately though.

    Any particularly strong selling points you want to convey?

  • source
  • parent
  • hideshow 4 child comments
  • [–] 2 points 1 year ago

    It uses the same philosophy of cargo.toml files in Rust projects, where you have all dependencies and versions listed. It's quite fast, and you can use it to install python cli tools without change your base installation. It's the best of venv and pipx and more, IMHO.

  • source
  • parent