Problem Installing on OSX

Use this forum for general user support and related questions.
Forum rules
Please upload a testscene that allows developers to reproduce the problem, and attach some images.
Post Reply
dcamino
Posts: 2
Joined: Fri Apr 17, 2020 6:48 pm

Problem Installing on OSX

Post by dcamino »

Hi, I am trying to install Luxcore on my computer and every time I try to activate the addon, Blender crashes.
It only gives me Bus error: 10.

This my system info:

Model: MacPro5,1, 12 processors, 6-Core Intel Xeon, 2,8 GHz, 64 GB, SMC 1.39f11
Graphics: NVIDIA GeForce GTX TITAN X, NVIDIA GeForce GTX TITAN X, PCIe

Thanks in advance and regards.
User avatar
B.Y.O.B.
Developer
Developer
Posts: 4146
Joined: Mon Dec 04, 2017 10:08 pm
Location: Germany
Contact:

Re: Problem Installing on OSX

Post by B.Y.O.B. »

dcamino
Posts: 2
Joined: Fri Apr 17, 2020 6:48 pm

Re: Problem Installing on OSX

Post by dcamino »

Hi, thanks. But they are saying there that it is already solved and it is not true. I have the latest version of Blender installed and it gives me an error.

Any idea?

Thx & regards.
dedwarmo
Posts: 1
Joined: Mon Apr 27, 2020 8:09 pm

Re: Problem Installing on OSX

Post by dedwarmo »

I'm having the same problem trying to enable BlendLuxCore-v2.3-mac64.

I'm running Blender 2.82a on macOS 10.15.2.
epilectrolytics
Donor
Donor
Posts: 790
Joined: Thu Oct 04, 2018 6:06 am

Re: Problem Installing on OSX

Post by epilectrolytics »

dedwarmo wrote: Mon Apr 27, 2020 8:31 pm I'm having the same problem trying to enable BlendLuxCore-v2.3-mac64.

I'm running Blender 2.82a on macOS 10.15.2.
From what I remember (currently messing with the new Cuda versions on my PC) about BlendLuxCore 2.3 on OSX it will only run on High Sierra and probably only with Blender 2.81.
Certain Fixes and notarization for OSX 10.14 and higher are only available in the daily builds of LuxCore 2.4 alpha.
(Which ATM has OpenCL broken.)
User avatar
u3dreal
Developer
Developer
Posts: 560
Joined: Tue Dec 03, 2019 3:23 pm
Location: Ulm
Contact:

Re: Problem Installing on OSX

Post by u3dreal »

Hello all,

2.3 release only works with Blender 2.81a and down.
Signing was added to the release download so it should work on High Sierra and up and was confirmed by users.

2.4alpha will only work with Blender 2.82a and up. It should work on High Sierra and up.
BYOB also added a version check for 2.4alpha but it has not been added to 2.3 release.

Maybe i should do that so the issue is self explanatory.
check out my newest stuff http://q3de.com/research/
portfolio http://q3de.com/


MB Pro i7 2.3Ghz, IrisPro 1.5GB, GTX750m 2GB - BigSur
Xeon X5650@4Ghz, RX 5700 - BigSur , Windows 10, Ubuntu 20.04
User avatar
B.Y.O.B.
Developer
Developer
Posts: 4146
Joined: Mon Dec 04, 2017 10:08 pm
Location: Germany
Contact:

Re: Problem Installing on OSX

Post by B.Y.O.B. »

u3dreal wrote: Tue Apr 28, 2020 3:25 pm BYOB also added a version check for 2.4alpha but it has not been added to 2.3 release.

Maybe i should do that so the issue is self explanatory.
If you could do that, it would be great :)
User avatar
u3dreal
Developer
Developer
Posts: 560
Joined: Tue Dec 03, 2019 3:23 pm
Location: Ulm
Contact:

Re: Problem Installing on OSX

Post by u3dreal »

Done .. uploading. If someone could test would make me happy.

@B.Y.O.B
i added the following

Code: Select all

import bpy
import platform

if platform.system() == "Darwin":
    if bpy.app.version > (2, 81, 16):
        raise Exception("\n\nUnsupported Blender version. 2.81a or lower is required.")
    mac_version = tuple(map(int, platform.mac_ver()[0].split(".")))
    if mac_version < (10, 13, 0):
        raise Exception("\n\nUnsupported Mac OS version. 10.13 or higher is required.")
check out my newest stuff http://q3de.com/research/
portfolio http://q3de.com/


MB Pro i7 2.3Ghz, IrisPro 1.5GB, GTX750m 2GB - BigSur
Xeon X5650@4Ghz, RX 5700 - BigSur , Windows 10, Ubuntu 20.04
Post Reply