.. _InstallationGuide: Installation Guide. =================================== 1. Copy rigs code to where you want. 2. Execute this python script in maya when you have setup the rig project folder: .. note:: import importlib import sys if not "*/nopia-rig/modules" in sys.path: sys.path.append("Z:/projects/NR/Assets/nopia-rig/modules") if not "*/nopia-rig/scripts" in sys.path: sys.path.append("Z:/projects/NR/Assets/nopia-rig/scripts") try: from importlib import reload except: pass import ps_nopiaRigUI reload(ps_nopiaRigUI) ps_nopiaRigUI.run() .. warning:: replace * with the folder path you've put rig to.