Skip to content

Foundry Nuke Submitter for Deadline Cloud

0

Hello,

Is there somebody who managed to use the provided nuke submitter with deadline cloud? I get a lot of error messages realted to the python files. Its not working...

Would be great if somebody could share some knowledge how to set it up.

Best

Sebastian

asked 2 years ago338 views
2 Answers
4

Hi pantoz,

please go through the below i hope it will helps you to resolve your issue.

Setup Steps

Install Deadline Client:

  • Download and install the Deadline Client on the Nuke workstation.
  • Connect to your Deadline Repository during installation.

Install Nuke Submitter:

  • Copy the Nuke submitter script from DeadlineRepository/submitters/Nuke to the appropriate Nuke directory.

Configure Submitter Script:

  • Ensure the script correctly points to the Deadline Repository and uses the appropriate Python interpreter.

Example Python Script Adjustments

import os
import sys

deadline_repository = os.getenv('DEADLINE_REPOSITORY')
if not deadline_repository:
    raise EnvironmentError("DEADLINE_REPOSITORY environment variable not set")

deadline_api_path = os.path.join(deadline_repository, 'api', 'python')
if deadline_api_path not in sys.path:
    sys.path.append(deadline_api_path)

try:
    import Deadline.DeadlineConnect as Connect
except ImportError:
    raise ImportError("Failed to import Deadline API. Check PYTHONPATH and DEADLINE_REPOSITORY settings.")

Key Points

Check Python Version: Ensure compatibility between Nuke's Python version and Deadline's Python scripts.

Environment Variables: Set DEADLINE_REPOSITORY to the correct repository path.

Permissions: Verify necessary permissions for accessing the Deadline Repository and running scripts.

EXPERT
answered 2 years ago
EXPERT
reviewed 2 years ago
EXPERT
reviewed 2 years ago
  • Hi, Thanks for your fast reply. BUT this is for the usual workflow when using deadline 10 manager localy, or not? I thought the new aws deadline cloud thingy would be super easy to setup = install submitter localy and setup renderfarm online. best

0

Hi, Thanks for your fast reply. BUT this is for the usual workflow when using deadline 10 manager localy, or not? I thought the new aws deadline cloud thingy would be super easy to setup = install submitter localy and setup renderfarm online. best

answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.