Nuitka Progress in 2015 – Python Compiler
1–10 of 55 posts
Re: Nuitka Progress in 2015 – Python Compiler
#2Re: Nuitka Progress in 2015 – Python Compiler
#3Edit: Ok, now I see that the "Overview" button is hidden on mobile.
Re: Nuitka Progress in 2015 – Python Compiler
#4Trying to understand this project. Is this more than a python compiler? Edit: Ok, now I see that the "Overview" button is hidden on mobile.
Re: Nuitka Progress in 2015 – Python Compiler
#5Trying to understand this project. Is this more than a python compiler? Edit: Ok, now I see that the "Overview" button is hidden on mobile.
Re: Nuitka Progress in 2015 – Python Compiler
#6Wow. That is amazing! Pyston only supports Python 2 and PyPy is working on it.
Nuitka looks very promising.
Re: Nuitka Progress in 2015 – Python Compiler
#7Re: Nuitka Progress in 2015 – Python Compiler
#8IMHO, this is a very important project as it makes up for one of the biggest shortcomings in the Python ecosystem - distribution of software. Distribution is clearly one of the reasons that Go is so popular. It would be great if we could take advantage of Python as a language and Python as an ecosystem while still being able to deploy as if it was a walk in the park.
Edit: I see from your reply that we're talking at cross purposes. I thought you meant source distribution, but you mean binary distribution to end users or deployment to production systems, and in that case I agree with you.
Re: Nuitka Progress in 2015 – Python Compiler
#9Re: Nuitka Progress in 2015 – Python Compiler
#10IMHO, this is a very important project as it makes up for one of the biggest shortcomings in the Python ecosystem - distribution of software. Distribution is clearly one of the reasons that Go is so popular. It would be great if we could take advantage of Python as a language and Python as an ecosystem while still being able to deploy as if it was a walk in the park.
I find the way software is packaged in Go to be a terrible regression, but I'm more interested in why you think pip and venv's don't solve the problem for Python already? Edit: I see from your reply that we're talking at cross purposes. I thought you meant source distribution, but you mean binary distribution to end users or deployment to production systems, and in that case I agree with you.
The way I see it, pip and virtualenv are not practical for deployment or distribution. You shouldn't have to download and install things during a production deployment. I even created a tool (https://github.com/objectified/vdist) to mitigate this problem, but it will always be a hack when doing it this way.