2 Answers
- Newest
- Most votes
- Most comments
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.
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
Relevant content
- asked 2 years ago
- asked 2 years ago
- asked 2 years ago
- asked 2 years ago
- published 3 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