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!
Created
November 3, 2018 11:46
-
-
Save davidlatwe/3daab09dd1d6acf4dcf84df17d88bd53 to your computer and use it in GitHub Desktop.
Maya Dependency Install Script (CentOS 7.4)
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 | |
# 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