Hello and good evening!
I am having quite a problem with trying to get usdzconvert
to run.
The error I'm getting is
/Users/diamoniquedanner/Downloads/usdpython/USD.command ; exit;
diamoniquedanner@Diamoniques-MacBook-Air ~ % /Users/diamoniquedanner/Downloads/usdpython/USD.command ; exit;
For FBX support, edit PYTHONPATH in this file (USD.command) or your shell configuration file
I have done the following:
- Downloaded the USDPython package provided by Apple
- Set my Command Line tools to Xcode 11
I think it's pertaining to the USD.command
file. I don't know how to edit it properly.
Here is the code in the USD.command file:
#!/bin/sh
BASEPATH=$(dirname "$0")
export PATH=$PATH:$BASEPATH/USD:$PATH:$BASEPATH/usdzconvert;
export PYTHONPATH=$PYTHONPATH:$BASEPATH/USD/lib/python
# uncomment to set the PYTHONPATH to FBX Bindings here:
# export PYTHONPATH=$PYTHONPATH:/Applications/Autodesk/FBX\ Python\ SDK/2019.0/lib/Python27_x86
if [[ $PYTHONPATH == *"FBX"* ]]; then
:
else
echo "For FBX support, edit PYTHONPATH in this file (USD.command) or your shell configuration file"
fi
$SHELL
Any help would be greatly appreciated.
Thank you!