Three answers in one
Posted Aug 21, 2012 16:23 UTC (Tue) by
man_ls (subscriber, #15091)
In reply to:
It runs everywhere! by Cyberax
Parent article:
Kamp: A Generation Lost in the Bazaar
But it's the same problem with Python
Not really. Python runs source code files directly, without compilation, so you can just
git clone a repo and run it (double click on Windows): no need to package. If you want to package software, Python includes
Distutils, which make installing software a breeze. Finally, Python has the official repo
PyPI, and a tool called
pip to download third party libraries. All that as part of Python itself, as officially supported tools. Hard to beat.
(
Log in to post comments)