Y
Hacker News
new
|
ask
|
show
|
jobs
by
mmastrac
1365 days ago
The one thing everyone here is missing so far is that it's a Rust binary, distributed on PyPi. That's brilliant.
4 comments
simonw
1365 days ago
I wrote a bit about this pattern here:
https://simonwillison.net/2022/May/23/bundling-binary-tools-...
link
samwillis
1365 days ago
I’m all in on using PyPI for binary distribution. Couple that with Python Venv and you have a brilliant system for per project dependancies.
I created this project for distributing Node via PyPI:
https://pypi.org/project/nodejs-bin/
link
WHATDOESIT
1364 days ago
Why not rather distribute Python as NPM dependency?
link
einpoklum
1365 days ago
You can get a statically-linked binary release from GitHub which depends on nothing (I think).
link
jonahx
1365 days ago
Can you explain the advantages of this vs cargo?
link
houqp
1365 days ago
Most users already have pip installed, so they won't need to install a rust toolchain.
link
proto_lambda
1365 days ago
cargo is not a binary distribution.
link