Skip to content

Instantly share code, notes, and snippets.

@davidlatwe
Created November 3, 2018 11:46
Show Gist options
  • Save davidlatwe/3daab09dd1d6acf4dcf84df17d88bd53 to your computer and use it in GitHub Desktop.
Save davidlatwe/3daab09dd1d6acf4dcf84df17d88bd53 to your computer and use it in GitHub Desktop.
Maya Dependency Install Script (CentOS 7.4)

From https://gitlab.com/snippets/1690538

Maya Dependency Install Script (CentOS 7.4)

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!

#!/bin/bash
# Dependent OpenGL libraries
yum -y install mesa-libGLw mesa-libGLU
# Dependent X Windows libraries
yum -y install libXp libXmu libXt libXi libXext libX11 libXinerama libXau libxcb
# Dependent System libraries
yum -y install gamin audiofile audiofile-devel e2fsprogs-libs glibc zlib libSM libICE tcsh
# Fonts
yum -y install xorg-x11-fonts-ISO8859-1-100dpi xorg-x11-fonts-ISO8859-1-75dpi liberation-mono-fonts liberation-fonts-common liberation-sans-fonts liberation-serif-fonts
# Extras for Setup and Launch
yum -y install libpng12 libtiff
cd /usr/lib64
ln -s libtiff.so.5 libtiff.so.3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment