• @namingthingsiseasy@programming.dev
    link
    fedilink
    2
    edit-2
    2 days ago

    What is so bad about virtual environments? I found them to be really nice and useful when I developed in Python over about 5-ish years. It was really nice being able to have separate clean environments for installing libraries and executing things.

    Granted, I only used Python as a solo developer, so if there are shortcomings that emerge when working with other developers, then I would not be aware of them…

    Edit: also, performance is a bit more of a subtle topic. For numerical logic, Python actually is (probably) much better than a lot of its competitors thanks to numpy and numexpr. For conditional logic, I would agree that it’s not the best, but when you consider developer velocity, it’s a clearly worthwhile tradeoff since frameworks like Django are so popular.

    • @vithigar@lemmy.ca
      link
      fedilink
      41 day ago

      What is so bad about virtual environments?

      They’re a solution to a self-inflicted problem. They’re only “really nice and useful” if you accept that having your projects stomp all over each others’ libraries and environments is normal.

      If projects were self-contained from the outset then you wouldn’t need an additional tool to make them so.

      • Eager Eagle
        link
        fedilink
        English
        14 hours ago

        thankfully Python seems to be moving away from the “activating your venv” nonsense. If you use poetry or uv, you don’t necessarily need to “activate” it before running your code; though a lot of people still try to do it because of learning inertia I guess.

    • Gamma
      link
      fedilink
      English
      22 days ago

      If I need to keep my Python environment separate I’d rather spin up a docker container. They make virtual environments pointless

        • Gamma
          link
          fedilink
          English
          1
          edit-2
          1 day ago

          A single extension and 1-2 clicks isn’t that much to me 🤷 I’ve been doing it painfree for a few years now

          • @rothaine@beehaw.org
            link
            fedilink
            English
            21 day ago

            Maybe it’s gotten better in recent times…it was always disconnecting and needing to be restarted