How to fix the problem: BackendCompilerFailed: backend='inductor' raised:

Hello, can you help me to fix the following problem:

epochs = 20

for epoch in range(epochs):
    print('Epoch: {}'.format(epoch))
    train()
    validate()

i get the following error:

-------------------------------------------------------------------BackendCompilerFailed: backend=‘inductor’ raised: RuntimeError: Cannot find a working triton installation. More information on installing Triton can be found at GitHub - triton-lang/triton: Development repository for the Triton language and compiler

Set TORCH_LOGS=“+dynamo” and TORCHDYNAMO_VERBOSE=1 for more information

You can suppress this exception and fall back to eager by setting:
import torch._dynamo torch._dynamo.config.suppress_errors = True

Hi @miletdus ,
This looks like a TRITON issue, hence i would recommend you raising it to the respective forum/Github page.

Thanks