This script is for installing all of the necessary dependencies for Maya 2018 on CentOS 7.4. This script was put together on a minimal install with just GNOME Desktop and the NVIDIA proprietary driver installed. There may or may not be some dependencies missing from this list. For a full list of packages that Maya uses, run ldd /usr/autodesk/maya2018/bin/maya.bin. Good luck!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class FirstGen(object): | |
| def tracker(self, trace=None): | |
| if trace is None: | |
| trace = [] | |
| for base in self.__class__.__bases__: | |
| if "tracker" in dir(base): | |
| trace += [base.__name__] | |
| base().tracker(trace) | |
| return trace |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import collections | |
| def dict_merge(dct, merge_dct): | |
| """ Recursive dict merge. Inspired by :meth:``dict.update()``, instead of | |
| updating only top-level keys, dict_merge recurses down into dicts nested | |
| to an arbitrary depth, updating keys. The ``merge_dct`` is merged into | |
| ``dct``. | |
| :param dct: dict onto which the merge is executed | |
| :param merge_dct: dct merged into dct |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # from collections import deque | |
| class _NoVal(object): | |
| def __repr__(self): | |
| return "_NoVal()" | |
| __solts__ = () | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """Avalanche-io C4 Framework - AssetID | |
| Simplified from: | |
| https://github.com/Avalanche-io/pyc4 | |
| """ | |
| import hashlib | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from cefpython3 import cefpython | |
| import sys, os | |
| import platform | |
| import ctypes | |
| from PySide.QtGui import * | |
| from PySide.QtCore import * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| def make_plugins(): | |
| import pyblish.api | |
| class CollectLongRun(pyblish.api.ContextPlugin): | |
| order = pyblish.api.CollectorOrder | |
| def process(self, context): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Feature: Energizing Avalon with Reveries | |
| Scenario: Launch <DCC_App> with Reveries pipeline implemented | |
| Given an environment that meets the Avalon's demand | |
| When I initiate Avalon | |
| And I create a project <PROJECT_NAME> | |
| And I set my task: <SILO> - <ASSET> - <TASK> | |
| And I launch <DCC_App> | |
| Then <DCC_App> will be startup with Reveries pipeline |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [run] | |
| branch = True | |
| source = . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #Download Maya from here: http://download.autodesk.com/us/support/files/maya_2016_service_pack_6/Autodesk_Maya_2016_SP6_EN_Linux_64bit.tgz | |
| #Get a student License from: http://www.autodesk.com/education/free-software/maya | |
| #Log in and select maya 2016, your language and an OS. Either should work. | |
| # !!!!!! IMPORTANT !!!!!! | |
| # BEFORE RUNNING, REPLACE "USER" AND "HOME" AT THE BOTTOM OF THIS SCRIPT WITH YOUR USERNAME AND HOME FOLDER | |
| # !!!!!! IMPORTANT !!!!!! |