I was just editing my Dockerfile and suddenly IntelliJ showed me the message “No” without any context.

  • mickkc@lmy.ndu.wtfOP
    link
    fedilink
    arrow-up
    1
    ·
    14 hours ago

    I don’t quite understand that. I did some research, and I read that the requirements.txt is somehow generated from requirements.in. But what is the difference between the two files then? Could you give me an example of what a requirements.in file would look like?

    Thank you!

    • scrion@lemmy.world
      link
      fedilink
      arrow-up
      3
      ·
      12 hours ago

      Please use a pyproject.toml file for both project setup and dependency management. It actually is standardized now in PEPs.

      uv is a great tool, now comes with a build tool as well. It has become a de-facto standard.

    • mickkc@lmy.ndu.wtfOP
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      14 hours ago

      Ohhh now I get it. It’s basically like package.json and package-lock.json in node, but for Python.

      It’s a bit strange to me that this isn’t the default in Python…

      • bamboo@lemmy.blahaj.zone
        link
        fedilink
        English
        arrow-up
        2
        ·
        13 hours ago

        Yes exactly, like if I know my app needs the requests library, I will just put that in requirements.in but after compile requirements.txt will include the exact version of requests and every version of each dependency. So that every time pip install is run, all dependencies are always the same despite what happens upstream