While i successfully built the blender-2.80 python module on Windows (without changing anything), i have great difficulty building it for linux (at least in Ubuntu).
Is there anywhere where i can download a successful python module (make bpy) build of the current blender-2.80 for linux?
bpymodule? You can download and install blender, then it's located in./2.80/scripts/modules/bpyand./2.80/scripts/modules/bpy_extras. There isn't really anything to build, it's just python scripts. If you want to run a python script and use bpy, but for some reason don't want to call them through blender, you can call the python executable located in./2.80/python/bin– Robert Gützkow Jul 09 '19 at 16:59bpyas a python module on ubuntu 18, with no issues. Where is the hassle? Related https://blender.stackexchange.com/questions/126959/how-to-build-blender-as-python-module – batFINGER Jul 09 '19 at 17:37python3.7Comment was re keeping ubuntu system python3 as 3.6, or whatever it's up to, or it stuffs up system upgrade scripts (it doesn't take into account alternate versions links, ) among other hassles. Taking out python3 distpackages from apt installed 3.7 python's site.py is a recommendation to keep installations separate. (Recently had to do again after update) Worth noting ifpip3.7 install foo --useris used for installing packages, the module foo will be available to blender's python and system python 3.7. – batFINGER Jul 11 '19 at 12:40