Setting up FBX Plugin for Python on Ubuntu 22.04

0. Prerequisite

Python == 3.10.X

1. Download FBX Python SDK

Go to https://www.autodesk.com/products/fbx/overview. Click the "Get FBX SDK" button.

In the opened page, navigate to "FBX Python SDK" section and download SDK for Linux.

Extract the downloaded file.

Grant executable permission to the binary installer.

2. Install

Create a location where the FBX plugin is going to be installed at. In this case, we use /home/tk/Documents/fbx/.

Then, run the binary and provide the installation path as the first argument.

./fbx202034_fbxpythonsdk_linux /home/tk/Documents/fbx/

3. Install to Python

cd /home/tk/Documents/fbx/
conda activate urdf
pip install ./fbx-2020.3.4-cp310-cp310-manylinux1_x86_64.whl

Last updated

Was this helpful?