-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[fbx_sdk install manual] if you stucked in install fbx_sdk for import fbx or other files. check this #61
Comments
I get |
Error: FBX library failed to load - importing FBX data will not succeed. Message: No module named 'fbxsip' |
I also encountered the same problem in Ubuntu 22.04. Is there any solution? |
after modifying the Makefile, run |
I encounter the same problem and already try sudo make before make install but the fbxsip still not find. Any ideas??? |
finally i installed fbx sdk in my machine.
it was not easy, so those who suffering to install fbx_sdk, i hope this helps.
i wrote that manual with many googling and trial.
./<YOUR_FBXSDK_PATH>/
cd <YOUR_FBXSDK_PATH>
tar zxvf fbx202032_fbxsdk_linux.tar.gz
./fbx202032_fbxsdk_linux.tar.gz
export FBXSDK_ROOT=<YOUR_FBXSDK_PATH>
./YOUR_FBX_PYTHON_BINDING_PATH/
cd <YOUR_FBX_PYTHON_BINDING_PATH>
tar zxvf fbx202032_fbxpythonbindings_linux.tar.gz
./fbx202032_fbxpythonbindings_linux.tar.gz
./<YOUR_SIP_PATH>/
cd <YOUR_SIP_PATH>
python configure.py
make
make install
export SIP_ROOT=<YOUR_SIP_PATH>
cd <YOUR_FBX_PYTHON_BINDING_PATH>
python PythonBindings.py Python3_x64 buildsip
sudo apt insatll libxml2-dev
python PythonBindings.py Python3_x64 buildsip
there is possibility of error when import fbx after first build.
fbx undefined symbol: xmlFree
cd <YOUR_FBX_PYTHON_BINDING_PATH>/build/Python38_x64
make clean
open make file and modify
make install
files are created in
<YOUR_FBX_PYTHON_BINDING_PATH/build/Distrib/site-packages/fbx>
after installingfbx.so
FbxCommon.py
fbxsip.so
and file is copied to
<YOUR_PIP_PATH>/site-packages
fbx.so
the package paths are not added to python sys.path, you should add path manually.
maybe i should move
<YOUR_FBX_PYTHON_BINDING_PATH/build/Distrib/site-packages/fbx>
to my python site-package. and maybe don't need this step.now you can successfully import fbx, FbxCommon packages.
The text was updated successfully, but these errors were encountered: