I think the issue may be with I2C detection:
pi@raspberrypi:~ $ wolfram
Wolfram Language 11.3.0 Engine for Linux ARM (32-bit)
Copyright 1988-2018 Wolfram Research, Inc.
In[1]:= FindDevices[]
DeviceOpen::cameraDisconnected: The camera is not detected. Please ensure the camera module is connected properly.
Out[1]= {DeviceObject[{FunctionDemo, 1}], DeviceObject[{GPIO, 1}], DeviceObject[{RandomSignalDemo, 1}], DeviceObject[{WriteDemo, 1}]}
In[2]:= FindDevices["I2C"]
Out[2]= {}
In[3]:=
However python works for SenseHAT:
pi@raspberrypi:~ $ python
Python 2.7.13 (default, Nov 24 2017, 17:33:09)
[GCC 6.3.0 20170516] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from sense_hat import SenseHat
>>>
>>> sense = SenseHat()
>>>
>>> sense.show_message("Hello world!")
>>>