Skip to content
Advertisement

Tag: compilation

Unable to build blender

I am trying to build blender so that I can use it directly from python and was going through this tutorial and I got stuck on the very first make command giving me I am using Ubuntu 14.04, with the system python installs (3.4.3 and 2.7.6). I am expected to specify manually these environment variables (if they are that)? Or

Implementing a function in Python vs C

Is there a difference (in terms of execution time) between implementing a function in Python and implementing it in C and then calling it from Python? If so, why? Answer Python (at least the “standard” CPython implementation) never actually compiles to native machine code; it compiles to bytecode which is then interpreted. So a C function which is in fact

Advertisement