Closed fan-ziqi closed 8 months ago
Hi,
These libraries are installed as Python modules when you run ./orbit.sh -e
. You can integrate your library in a similar way by the following steps:
./orbit.sh -e "YOU_LIB_NAME"
If you want to use your library from source, then instead of doing (1) and (2), you can just install your library similar to other Python libraries. As an example:
# Option 1: You are using a conda environment with Orbit
cd PATH/TO/YOUR_LIB_DIR
python -m pip install -e .
# Option 2: You are using the Python shipped with Isaac Sim
cd orbit
./orbit.sh -p -m pip install -e PATH/TO/YOUR_LIB_DIR
Thank you very much!
Question
Where should I put my own library like RL-Games or RSL-RL in orbit?