|
|
|
|
|
by pansa2
2207 days ago
|
|
> I'm hoping one day that RustPython will succeed because that would mean an amazing deployment story. Isn't RustPython just an alternative interpreter to CPython, implemented in Rust instead of C? How would RustPython offer better deployment than CPython? |
|
So if one day RustPython gets compatible enought with CPython that you can use it as a drop in replacement, you can start creating a tool that compiles any Python VM for any target, and bring along your program with it. Making a standalone version of it would become much easier.
Right now, doing so either requires you to bring in a pre-compile version of cpython for your target (which is what briefcase does) or compile the thing yourself with gcc + headers + deps(which is what nuitka does).
It's not easy.