Sorry Python but it is what it is.

So you are saying that npm is better than pip?? I’m not saying pip is good, but npm?

Sören
link
fedilink
171Y

npm has a lockfile which makes it infinitely better.

bjorney
link
fedilink
111Y

pip also has lock files

pip freeze > requirements.txt

Would that just create a list of the current packages/versions without actually locking anything?

bjorney
link
fedilink
6
edit-2
1Y

Would that just create a list of the current packages/versions

Yes, and all downstream dependencies

without actually locking anything?

What do you mean? Nothing stops someone from manually installing an npm package that differs from package-lock.json - this behaves the same. If you pip install -r requirements.txt it installs the exact versions specified by the package maintainer, just like npm install the only difference is python requires you to specify the “lock file” instead of implicitly reading one from the CWD

@SatyrSack@lemmy.one
link
fedilink
1
edit-2
1Y

As I understand, when you update npm packages, if a package/version is specified in package-lock.json, it will not get updated past that version. But running those pip commands you mentioned is only going to affect what version gets installed initially. From what I can tell, nothing about those commands is stopping pip from eventually updating a package past what you had specified in the requirements.txt that you installed from.

bjorney
link
fedilink
11Y

But running those pip commands you mentioned is only going to affect what version gets installed initially.

I don’t follow. If my package-lock.json specifies package X v1.1 nothing stops me from manually telling npm to install package X v1.2, it will just update my package.json and package-lock.json afterwards

If a requirements.txt specifies X==1.1, pip will install v1.1, not 1.2 or a newer version. If I THEN install package Y that depends on X>1.1, the pip install output will say 1.1 is not compatible and that it is being upgraded to 1.2 to satisfy package Y’s requirements. If package Y works fine on v1.1 and does not require the upgrade, it will leave package X at the version you had previously installed.

Sören
link
fedilink
11Y

That’s not a lockfile. This would be the equivalent of package.json

bjorney
link
fedilink
-11Y

How is it not a lock file?

package.json doesn’t contain the exact version number of all downstream dependencies, this does

Lockfile contains exact state of the npm-managed code, making it reproducible exactly the same every time.

For example without lockfile in your package.json you can have version 5.2.x. In your working directory, you use 5.2.1, however on repo, 5.2.2 has appeared, matching your criteria. Now let’s say a new bug appeared in 5.2.2.

Now you have mismatched vendor code, that can make your code behave differently on your machine, and your coworker’s machine, making you hunt for bug that wasn’t even on your side.

Lockfile prevents that by saving an actual state of vendor code.

bjorney
link
fedilink
11Y

Yes, which is EXACTLY like a pip freeze’d requirements.txt, storing the exact version of every package and downstream dependency you have installed

Pip has Pipfile.lock.

@ExLisper@linux.community
creator
link
fedilink
English
-21Y

I would say npm is shitty like a lot of tools are. pip takes it to the next level.

Yeah? I don’t recall having to wait a long time when setting up my project using pip.

Create a post

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

  • Posts must be relevant to programming, programmers, or computer science.
  • No NSFW content.
  • Jokes must be in good taste. No hate speech, bigotry, etc.
  • 1 user online
  • 120 users / day
  • 257 users / week
  • 744 users / month
  • 3.72K users / 6 months
  • 1 subscriber
  • 1.48K Posts
  • 32.6K Comments
  • Modlog