Skip to content

Setup

Plugin Installation

Install the ApplicationPlugins package once to enable both glTF2.0 Import and glTF2.0 Export in Maya. For Maya 2024 and earlier, install numpy into that version's mayapy environment before first use.

Installation

  1. Close Maya.
  2. Copy the entire gltf_importer_exporter_for_maya folder into one of the Autodesk ApplicationPlugins locations below.
  3. Restart Maya. Maya 2022 and later will detect the package automatically and expose both glTF2.0 Import and glTF2.0 Export.

Install Paths (Windows)

Scope Path
System-wide C:\ProgramData\Autodesk\ApplicationPlugins\
Per-user %APPDATA%\Autodesk\ApplicationPlugins\

The folder must contain PackageContents.xml and a Contents subfolder at its root.


NumPy Requirement

Maya 2025 or later: no extra steps — numpy is bundled.

Maya 2022 – 2024: install numpy once into that version's mayapy before first use.

Note: The steps below cover the tested Windows setup. Run your terminal as Administrator and replace 2024 with your Maya version (2022, 2023, or 2024).

  1. Close Maya.
  2. Open Command Prompt or PowerShell as Administrator.
  3. Navigate to the Maya bin folder and run the install:
cd /d "C:\Program Files\Autodesk\Maya2024\bin"
mayapy.exe -m pip install numpy

Installing numpy for Maya using mayapy in Command Prompt
Install numpy once in the target Maya version before loading the plug-in on Maya 2024 and earlier.

Set-Location "C:\Program Files\Autodesk\Maya2024\bin"
.\mayapy.exe -m pip install numpy

Installing numpy for Maya using mayapy in PowerShell
Install numpy once in the target Maya version before loading the plug-in on Maya 2024 and earlier.

Verify the NumPy Install

mayapy.exe -c "import numpy; print(numpy.__version__)"
.\mayapy.exe -c "import numpy; print(numpy.__version__)"

If pip Is Unavailable

Bootstrap pip first, then rerun the install command above:

mayapy.exe -m ensurepip --upgrade
.\mayapy.exe -m ensurepip --upgrade

Verification

  1. Open Maya.
  2. Confirm the glTF2.0 menu appears in the main menu bar.
  3. Go to File > Import and confirm glTF2.0 Import is listed.
  4. Go to File > Export All or File > Export Selection and confirm glTF2.0 Export is listed.
  5. Open each option panel once to confirm the import and export UI loads without errors.

Updating or Removing

Delete the installed gltf_importer_exporter_for_maya folder from the ApplicationPlugins location you used, then copy in the new build.

If Maya does not show the glTF options after installation, check the Script Editor for load errors and confirm the copied folder structure matches the layout described above.